From e940ca261a925651c2b32aa41cceced23814ea14 Mon Sep 17 00:00:00 2001 From: "huiyu,eun" Date: Thu, 26 Oct 2017 11:22:07 +0900 Subject: [PATCH] [NUI] Fix build warning message Override Equals and GetHashCode Change-Id: Icff6ae5e2574255728cdf4c3c8423522c9d09818 Signed-off-by: huiyu,eun --- src/Tizen.NUI/src/public/BaseHandle.cs | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/src/Tizen.NUI/src/public/BaseHandle.cs b/src/Tizen.NUI/src/public/BaseHandle.cs index d7a1b7e..6b40339 100755 --- a/src/Tizen.NUI/src/public/BaseHandle.cs +++ b/src/Tizen.NUI/src/public/BaseHandle.cs @@ -296,6 +296,27 @@ namespace Tizen.NUI } /// + /// Equals + /// + /// The object should be compared. + /// True if equal. + /// 4 + public override bool Equals(object o) + { + return base.Equals(o); + } + + /// + /// Gets the the hash code of this baseHandle. + /// + /// The Hash Code. + /// 4 + public override int GetHashCode() + { + return base.GetHashCode(); + } + + /// /// Create an instance of BaseHandle. /// /// 3 -- 2.7.4