[NUI] Fix contradictory code in SetProperty
authorJiyun Yang <ji.yang@samsung.com>
Thu, 29 Apr 2021 01:41:57 +0000 (10:41 +0900)
committerdongsug-song <35130733+dongsug-song@users.noreply.github.com>
Fri, 21 May 2021 07:37:43 +0000 (16:37 +0900)
Signed-off-by: Jiyun Yang <ji.yang@samsung.com>
src/Tizen.NUI/src/internal/EXaml/Operation/SetProperty.cs

index 2cb35bc..a157719 100755 (executable)
@@ -48,7 +48,7 @@ namespace Tizen.NUI.EXaml
 
             if (null == property)
             {
-                throw new Exception(String.Format("Can't find property {0} in type {1}", property.Name, instance.GetType().FullName));
+                throw new Exception(String.Format("Can't find property in type {0}", instance.GetType().FullName));
             }
 
             if (null == property.SetMethod)