Ver Fonte

PRS 7.47

Kenric Nugteren há 1 ano atrás
pai
commit
e82e29e843
1 ficheiros alterados com 4 adições e 4 exclusões
  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()
         {