Ignore:
Timestamp:
Jul 27, 2022, 7:17:17 PM (2 years ago)
Author:
alloc
Message:

A few bits of code cleanup

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/WebPermissions.cs

    r369 r372  
    1818                private readonly Dictionary<string, WebModulePermission> modules = new CaseInsensitiveStringDictionary<WebModulePermission> ();
    1919
    20                 public WebPermissions () {
     20                private WebPermissions () {
    2121                        allModulesList = new List<WebModulePermission> ();
    2222                        allModulesListRO = new ReadOnlyCollection<WebModulePermission> (allModulesList);
     
    2929                        get {
    3030                                lock (typeof (WebPermissions)) {
    31                                         if (instance == null) {
    32                                                 instance = new WebPermissions ();
    33                                         }
    34 
    35                                         return instance;
     31                                        return instance ?? (instance = new WebPermissions ());
    3632                                }
    3733                        }
     
    5248
    5349                public WebModulePermission GetModulePermission (string _module) {
    54                         WebModulePermission result;
    55                         if (modules.TryGetValue (_module, out result)) {
     50                        if (modules.TryGetValue (_module, out WebModulePermission result)) {
    5651                                return result;
    5752                        }
     
    192187
    193188                        if (!File.Exists (GetFullPath ())) {
    194                                 Log.Out (string.Format ("Permissions file '{0}' not found, creating.", GetFileName ()));
     189                                Log.Out ($"Permissions file '{GetFileName ()}' not found, creating.");
    195190                                Save ();
    196191                                return;
    197192                        }
    198193
    199                         Log.Out (string.Format ("Loading permissions file at '{0}'", GetFullPath ()));
     194                        Log.Out ($"Loading permissions file at '{GetFullPath ()}'");
    200195
    201196                        XmlDocument xmlDoc = new XmlDocument ();
Note: See TracChangeset for help on using the changeset viewer.