Kenric Nugteren 1 year ago
parent
commit
e82e29e843
1 changed files with 4 additions and 4 deletions
  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()
         {