Fix warnings that there is an unused value 92/113892/1 accepted/tizen/common/20170209.122604 accepted/tizen/ivi/20170210.004425 accepted/tizen/mobile/20170210.004304 accepted/tizen/tv/20170210.004320 submit/tizen/20170209.083122
authorchanywa <cbible.kim@samsung.com>
Thu, 9 Feb 2017 07:48:57 +0000 (16:48 +0900)
committerchanywa <cbible.kim@samsung.com>
Thu, 9 Feb 2017 07:48:57 +0000 (16:48 +0900)
Change-Id: I17756149622a43aed4a479aeb640686346ab38b4

Tizen.Maps/Tizen.Maps/Overlay.cs

index a5a86ab..ba743d0 100755 (executable)
@@ -25,7 +25,6 @@ namespace Tizen.Maps
     public class Overlay : MapObject, IDisposable
     {
         internal Interop.OverlayHandle handle;
-        private EvasObject _containedObject;
 
         /// <summary>
         /// Creates normal overlay map object
@@ -43,8 +42,6 @@ namespace Tizen.Maps
             {
                 err.ThrowIfFailed("given coordinates or parent evas object is null");
             }
-
-            _containedObject = objectToContain;
             handle = new Interop.OverlayHandle(coordinates.handle, objectToContain, Interop.ViewOverlayType.Normal);
         }