Kenric Nugteren před 1 rokem
rodič
revize
e82e29e843
1 změnil soubory, kde provedl 4 přidání a 4 odebrání
  1. 4 4
      InABox.Core/Column.cs

+ 4 - 4
InABox.Core/Column.cs

@@ -42,11 +42,11 @@ namespace InABox.Core
             }
         }
 
-        public bool IsEqualTo(String name) => 
-            !String.IsNullOrWhiteSpace(name) && String.Equals(Property, name);
+        public bool IsEqualTo(string name) => 
+            !string.IsNullOrWhiteSpace(name) && string.Equals(Property, name);
 
-        public bool IsParentOf(String name) =>
-            !String.IsNullOrWhiteSpace(name) && name.StartsWith(Property + ".");
+        public bool IsParentOf(string name) =>
+            !string.IsNullOrWhiteSpace(name) && name.StartsWith(Property + ".");
 
         public Column()
         {