Follow formatting NUI
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / Xaml / XmlName.cs
index 7cb0a26..bce027b 100755 (executable)
@@ -27,7 +27,7 @@ namespace Tizen.NUI.Xaml
         {
             if (obj == null)
                 return false;
-            if (obj.GetType() != typeof (XmlName))
+            if (obj.GetType() != typeof(XmlName))
                 return false;
             var other = (XmlName)obj;
             return NamespaceURI == other.NamespaceURI && LocalName == other.LocalName;
@@ -53,6 +53,6 @@ namespace Tizen.NUI.Xaml
             => x1.NamespaceURI == x2.NamespaceURI && x1.LocalName == x2.LocalName;
 
         public static bool operator !=(XmlName x1, XmlName x2)
-            =>  !(x1 == x2);
+            => !(x1 == x2);
     }
 }
\ No newline at end of file