Follow formatting NUI
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI / src / internal / XamlBinding / BindingExpression.cs
index 895c0c3..e92af4e 100755 (executable)
@@ -289,12 +289,15 @@ namespace Tizen.NUI.Binding
                 part.IndexerName = indexerName;
 
 #if NETSTANDARD2_0
-                try {
+                try
+                {
                     property = sourceType.GetDeclaredProperty(indexerName);
                 }
-                catch (AmbiguousMatchException) {
+                catch (AmbiguousMatchException)
+                {
                     // Get most derived instance of property
-                    foreach (var p in sourceType.GetProperties().Where(prop => prop.Name == indexerName)) {
+                    foreach (var p in sourceType.GetProperties().Where(prop => prop.Name == indexerName))
+                    {
                         if (property == null || property.DeclaringType.IsAssignableFrom(property.DeclaringType))
                             property = p;
                     }
@@ -351,7 +354,7 @@ namespace Tizen.NUI.Binding
                 }
                 if (property.CanWrite && property.SetMethod != null)
                 {
-                    if(property.SetMethod.IsPublic && !property.SetMethod.IsStatic)
+                    if (property.SetMethod.IsPublic && !property.SetMethod.IsStatic)
                     {
                         part.LastSetter = property.SetMethod;
                         part.SetterType = part.LastSetter.GetParameters().Last().ParameterType;