Sync upstream
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / public / PropertyValue.cs
index 31cf35b..b0ea75d 100755 (executable)
@@ -669,25 +669,5 @@ namespace Tizen.NUI
         {
             return value == null ? new PropertyValue() : new PropertyValue(value);
         }
-
-        internal static PropertyValue CreateWithGuard(string value)
-        {
-            return value == null ? new PropertyValue() : new PropertyValue(value);
-        }
-
-        internal static PropertyValue CreateWithGuard(Vector2 value)
-        {
-            return value == null ? new PropertyValue() : new PropertyValue(value);
-        }
-
-        internal static PropertyValue CreateWithGuard(Rectangle value)
-        {
-            return value == null ? new PropertyValue() : new PropertyValue(value);
-        }
-
-        internal static PropertyValue CreateWithGuard(Color value)
-        {
-            return value == null ? new PropertyValue() : new PropertyValue(value);
-        }
     }
 }