diff options
author | sr55 <[email protected]> | 2017-03-26 11:57:57 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-03-26 11:57:57 +0100 |
commit | 6402bd62a09790377fa76868bed361ffa9b5c810 (patch) | |
tree | 99629d78f89f4dac2fca036e0e85cdbadb4f6f8e /win/CS/HandBrakeWPF/Services/UserSettingService.cs | |
parent | b13c230613ae2092a5ce6f699df10a93f400cff6 (diff) |
WinGui: Fix a number of stylecop warnings.
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/UserSettingService.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/UserSettingService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Services/UserSettingService.cs b/win/CS/HandBrakeWPF/Services/UserSettingService.cs index acff3209a..6d8994ac5 100644 --- a/win/CS/HandBrakeWPF/Services/UserSettingService.cs +++ b/win/CS/HandBrakeWPF/Services/UserSettingService.cs @@ -37,7 +37,7 @@ namespace HandBrakeWPF.Services /// <summary>
/// The XML Serializer
/// </summary>
- readonly XmlSerializer serializer = new XmlSerializer(typeof(Collections.SerializableDictionary<string, object>));
+ private readonly XmlSerializer serializer = new XmlSerializer(typeof(Collections.SerializableDictionary<string, object>));
/// <summary>
/// The User Settings
|