OSDN Git Service

識別子をPascalCaseにする (SA1300, SA1303, SA1307, SA1309, SA1311)
[opentween/open-tween.git] / OpenTween / Models / TabInformations.cs
index 81056ac..9d17e72 100644 (file)
@@ -76,7 +76,7 @@ namespace OpenTween.Models
         // トランザクション用
         private readonly object LockObj = new object();
 
-        private static readonly TabInformations _instance = new TabInformations();
+        private static readonly TabInformations Instance = new TabInformations();
 
         // List
         private List<ListElement> _lists = new List<ListElement>();
@@ -86,7 +86,7 @@ namespace OpenTween.Models
         }
 
         public static TabInformations GetInstance()
-            => _instance; // singleton
+            => Instance; // singleton
 
         public string SelectedTabName { get; private set; } = "";