@@ -19,20 +19,20 @@ internal static void InitializeModule()
1919 }
2020
2121
22- private readonly static Type decoratorDrawerBase = typeof ( ToolboxDecoratorDrawer < > ) ;
23- private readonly static Type conditionDrawerBase = typeof ( ToolboxConditionDrawer < > ) ;
24- private readonly static Type selfPropertyDrawerBase = typeof ( ToolboxSelfPropertyDrawer < > ) ;
25- private readonly static Type listPropertyDrawerBase = typeof ( ToolboxListPropertyDrawer < > ) ;
22+ private static readonly Type decoratorDrawerBase = typeof ( ToolboxDecoratorDrawer < > ) ;
23+ private static readonly Type conditionDrawerBase = typeof ( ToolboxConditionDrawer < > ) ;
24+ private static readonly Type selfPropertyDrawerBase = typeof ( ToolboxSelfPropertyDrawer < > ) ;
25+ private static readonly Type listPropertyDrawerBase = typeof ( ToolboxListPropertyDrawer < > ) ;
2626
27- private readonly static Dictionary < Type , ToolboxDecoratorDrawerBase > decoratorDrawers = new Dictionary < Type , ToolboxDecoratorDrawerBase > ( ) ;
28- private readonly static Dictionary < Type , ToolboxConditionDrawerBase > conditionDrawers = new Dictionary < Type , ToolboxConditionDrawerBase > ( ) ;
29- private readonly static Dictionary < Type , ToolboxPropertyDrawerBase > selfPropertyDrawers = new Dictionary < Type , ToolboxPropertyDrawerBase > ( ) ;
30- private readonly static Dictionary < Type , ToolboxPropertyDrawerBase > listPropertyDrawers = new Dictionary < Type , ToolboxPropertyDrawerBase > ( ) ;
27+ private static readonly Dictionary < Type , ToolboxDecoratorDrawerBase > decoratorDrawers = new Dictionary < Type , ToolboxDecoratorDrawerBase > ( ) ;
28+ private static readonly Dictionary < Type , ToolboxConditionDrawerBase > conditionDrawers = new Dictionary < Type , ToolboxConditionDrawerBase > ( ) ;
29+ private static readonly Dictionary < Type , ToolboxPropertyDrawerBase > selfPropertyDrawers = new Dictionary < Type , ToolboxPropertyDrawerBase > ( ) ;
30+ private static readonly Dictionary < Type , ToolboxPropertyDrawerBase > listPropertyDrawers = new Dictionary < Type , ToolboxPropertyDrawerBase > ( ) ;
3131
3232 /// <summary>
3333 /// Collection of specific drawers mapped to selected (picked) object types.
3434 /// </summary>
35- private readonly static Dictionary < Type , ToolboxTargetTypeDrawer > targetTypeDrawers = new Dictionary < Type , ToolboxTargetTypeDrawer > ( ) ;
35+ private static readonly Dictionary < Type , ToolboxTargetTypeDrawer > targetTypeDrawers = new Dictionary < Type , ToolboxTargetTypeDrawer > ( ) ;
3636
3737 /// <summary>
3838 /// Collection of currently cached handlers mapped to a unique property key.
0 commit comments