Remove unused Mock method
authorkj7.sung <kj7.sung@samsung.com>
Fri, 28 Oct 2016 02:37:47 +0000 (11:37 +0900)
committerkj7.sung <kj7.sung@samsung.com>
Fri, 28 Oct 2016 02:37:47 +0000 (11:37 +0900)
Change-Id: I257293b4a9cd083b02e770aef7d1af9bc681ddb7
Signed-off-by: kj7.sung <kj7.sung@samsung.com>
Tizen.Location/Tizen.Location/Location.cs
Tizen.Location/Tizen.Location/LocatorEnumerations.cs

index b04116c..4f983b1 100644 (file)
@@ -44,12 +44,12 @@ namespace Tizen.Location
         /// </summary>
         public Location(double latitude, double longitude, double altitude, double horizontalAccuracy, double direction, double speed, int timestamp)
         {
-            _altitude = altitude;
             _latitude = latitude;
             _longitude = longitude;
+            _altitude = altitude;
+            _horizontal = horizontalAccuracy;
             _direction = direction;
             _speed = speed;
-            _horizontal = horizontalAccuracy;
             _timestamp = timestamp;
         }
 
@@ -198,4 +198,4 @@ namespace Tizen.Location
             return result;
         }
     }
-}
\ No newline at end of file
+}
index 3a42cbb..9ec1c85 100644 (file)
@@ -21,7 +21,6 @@ namespace Tizen.Location
         Hybrid, /**<This method selects the best method available at the moment.*/
         Gps, /**<This method uses Global Positioning System.*/
         Wps, /**<This method uses WiFi Positioning System.*/
-        Mock /**<This method uses Mock location for testing.*/
     }
 
     /// <summary>
@@ -66,4 +65,4 @@ namespace Tizen.Location
         In = 0, /**< Boundary In (Zone In) */
         Out /**< Boundary Out (Zone Out) */
     }
-}
\ No newline at end of file
+}