Revert "[Tizen] Fix Border property in ImageView does not work issue."
authorminho.sun <minho.sun@samsung.com>
Mon, 14 Aug 2017 07:49:10 +0000 (16:49 +0900)
committerminho.sun <minho.sun@samsung.com>
Mon, 14 Aug 2017 07:49:12 +0000 (16:49 +0900)
This reverts commit bc9642426dc0fbd53fac528d05f6273841799ae9.

Change-Id: I456cf3d4de5ae93897f67c4cb7c8c5fb27dfdc33

src/Tizen.NUI/src/public/BaseComponents/ImageView.cs

index 5182c4f..ef1f2c3 100755 (executable)
@@ -169,13 +169,11 @@ namespace Tizen.NUI.BaseComponents
         /// <param name="url">The url of the image resource to display</param>
         public ImageView(string url) : this(NDalicPINVOKE.ImageView_New__SWIG_2(url), true)
         {
-            _url = url;
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
 
         }
         internal ImageView(string url, Uint16Pair size) : this(NDalicPINVOKE.ImageView_New__SWIG_3(url, Uint16Pair.getCPtr(size)), true)
         {
-            _url = url;
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
 
         }
@@ -194,13 +192,11 @@ namespace Tizen.NUI.BaseComponents
         /// <param name="url">The URL to the image resource to display</param>
         public void SetImage(string url)
         {
-            _url = url;
             NDalicPINVOKE.ImageView_SetImage__SWIG_1(swigCPtr, url);
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }
         internal void SetImage(string url, Uint16Pair size)
         {
-            _url = url;
             NDalicPINVOKE.ImageView_SetImage__SWIG_2(swigCPtr, url, Uint16Pair.getCPtr(size));
             if (NDalicPINVOKE.SWIGPendingException.Pending) throw NDalicPINVOKE.SWIGPendingException.Retrieve();
         }