From 050168e022e1948c05b7a518862532bc242f91b2 Mon Sep 17 00:00:00 2001 From: "dongsug.song" Date: Tue, 25 Jul 2017 10:36:19 +0900 Subject: [PATCH] Revert "[Tizen] fix crash: HasBody() null reference" This reverts commit b2d85ed13a2496d6d26f0f86876a73a39711bc92. Change-Id: I80ed17197b43c97e2976cc3605ac8bc3480be6e8 --- src/Tizen.NUI/src/public/BaseHandle.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/Tizen.NUI/src/public/BaseHandle.cs b/src/Tizen.NUI/src/public/BaseHandle.cs index 130d455..e0d7ecc 100755 --- a/src/Tizen.NUI/src/public/BaseHandle.cs +++ b/src/Tizen.NUI/src/public/BaseHandle.cs @@ -307,11 +307,6 @@ namespace Tizen.NUI public bool HasBody() { - if (disposed == true) - { - return false; - } - bool ret = NDalicPINVOKE.BaseHandle_HasBody(swigCPtr); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; @@ -319,11 +314,6 @@ namespace Tizen.NUI public bool IsEqual(BaseHandle rhs) { - if (disposed == true) - { - return false; - } - bool ret = NDalicPINVOKE.BaseHandle_IsEqual(swigCPtr, BaseHandle.getCPtr(rhs)); if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve(); return ret; -- 2.7.4