@@ -41,20 +41,20 @@ void OnDeserialized(StreamingContext context)
4141
4242 public class LightingStateManager : ObjectSettings < ProfilesManagerSettings > , IInit
4343 {
44- public Dictionary < string , ILightEvent > Events { get ; private set ; } = new Dictionary < string , ILightEvent > { { "desktop" , new Desktop . Desktop ( ) } } ;
44+ public Dictionary < string , ILightEvent > Events { get ; } = new ( ) { { "desktop" , new Desktop . Desktop ( ) } } ;
4545
46- public Desktop . Desktop DesktopProfile { get { return ( Desktop . Desktop ) Events [ "desktop" ] ; } }
46+ public Desktop . Desktop DesktopProfile => ( Desktop . Desktop ) Events [ "desktop" ] ;
4747
48- private List < ILightEvent > StartedEvents = new List < ILightEvent > ( ) ;
49- private List < ILightEvent > UpdatedEvents = new List < ILightEvent > ( ) ;
48+ private List < ILightEvent > StartedEvents = new ( ) ;
49+ private List < ILightEvent > UpdatedEvents = new ( ) ;
5050
51- private Dictionary < string , string > EventProcesses { get ; set ; } = new Dictionary < string , string > ( ) ;
51+ private Dictionary < string , string > EventProcesses { get ; } = new ( ) ;
5252
53- private Dictionary < string , string > EventTitles { get ; set ; } = new Dictionary < string , string > ( ) ;
53+ private Dictionary < string , string > EventTitles { get ; } = new ( ) ;
5454
55- private Dictionary < string , string > EventAppIDs { get ; set ; } = new Dictionary < string , string > ( ) ;
55+ private Dictionary < string , string > EventAppIDs { get ; } = new ( ) ;
5656
57- public Dictionary < Type , LayerHandlerMeta > LayerHandlers { get ; private set ; } = new Dictionary < Type , LayerHandlerMeta > ( ) ;
57+ public Dictionary < Type , LayerHandlerMeta > LayerHandlers { get ; } = new ( ) ;
5858
5959 public string AdditionalProfilesPath = Path . Combine ( Global . AppDataDirectory , "AdditionalProfiles" ) ;
6060
0 commit comments