Follow formatting NUI
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Controls / Navigation / Page.cs
index 74ba842..305a87c 100755 (executable)
@@ -76,20 +76,20 @@ namespace Tizen.NUI.Components
             }
             set
             {
-               if (_content)
-               {
-                   if (_content != value)
-                   {
-                       Remove(_content);
-                       _content = value;
-                       Add(value);
-                   }
-               }
-               else
-               {
-                   _content = value;
-                   Add(value);
-               }
+                if (_content)
+                {
+                    if (_content != value)
+                    {
+                        Remove(_content);
+                        _content = value;
+                        Add(value);
+                    }
+                }
+                else
+                {
+                    _content = value;
+                    Add(value);
+                }
             }
         }