summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Services
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs4
-rw-r--r--win/CS/HandBrake.ApplicationServices/Services/PresetService.cs7
2 files changed, 3 insertions, 8 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs
index 30d6b2f3a..b7d65c1a1 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/Interfaces/IPresetService.cs
@@ -15,9 +15,9 @@ namespace HandBrake.ApplicationServices.Services.Interfaces
public interface IPresetService
{
/// <summary>
- /// Gets or sets a Collection of presets.
+ /// Gets a Collection of presets.
/// </summary>
- ObservableCollection<Preset> Presets { get; set; }
+ ObservableCollection<Preset> Presets { get; }
/// <summary>
/// Add a new preset to the system
diff --git a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
index 677504253..c3bfa7fb7 100644
--- a/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
+++ b/win/CS/HandBrake.ApplicationServices/Services/PresetService.cs
@@ -70,7 +70,7 @@ namespace HandBrake.ApplicationServices.Services
}
/// <summary>
- /// Gets or sets a Collection of presets.
+ /// Gets a Collection of presets.
/// </summary>
public ObservableCollection<Preset> Presets
{
@@ -78,11 +78,6 @@ namespace HandBrake.ApplicationServices.Services
{
return this.presets;
}
-
- set
- {
- this.presets = value;
- }
}
/// <summary>