From 3cb08ac600f061d7e5f802f98c2f5109d60ae631 Mon Sep 17 00:00:00 2001 From: huiyueun <35286162+huiyueun@users.noreply.github.com> Date: Wed, 7 Oct 2020 10:58:36 +0900 Subject: [PATCH] [NUI] Delete unnecessary log in BaseHandle (#2081) If Dispose is already called, the log is displayed unnecessarily. Signed-off-by: huiyu.eun --- src/Tizen.NUI/src/public/BaseHandle.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseHandle.cs b/src/Tizen.NUI/src/public/BaseHandle.cs index 95bac96..7c4fd48 100755 --- a/src/Tizen.NUI/src/public/BaseHandle.cs +++ b/src/Tizen.NUI/src/public/BaseHandle.cs @@ -402,9 +402,6 @@ namespace Tizen.NUI { if (swigCPtrCopy.Handle == IntPtr.Zero) { - global::System.Diagnostics.StackTrace trace = new global::System.Diagnostics.StackTrace(); - Tizen.Log.Error("NUI", "" + trace); - Tizen.Log.Error("NUI", "[ERROR] the native handle is invalid!"); return false; } -- 2.7.4