Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Grechuhin <i.grechuhin@gmail.com>2016-08-11 13:24:16 +0300
committerIlya Grechuhin <i.grechuhin@gmail.com>2016-08-11 13:24:16 +0300
commit447f8a245c1d03b78d05bd124f22e9dc0aa6be72 (patch)
tree7524f56222410ae3b84530d28b35cca8e9e4cf2c
parent0b2c21d8dae3bfba0be7123f91e417694b7f8abb (diff)
[ios] Removed pushwoosh location tracking.release-63-pushwoosh
-rw-r--r--iphone/Maps/Classes/Location/MWMLocationManager.mm2
1 files changed, 0 insertions, 2 deletions
diff --git a/iphone/Maps/Classes/Location/MWMLocationManager.mm b/iphone/Maps/Classes/Location/MWMLocationManager.mm
index 44bd946f42..48d0acb702 100644
--- a/iphone/Maps/Classes/Location/MWMLocationManager.mm
+++ b/iphone/Maps/Classes/Location/MWMLocationManager.mm
@@ -508,7 +508,6 @@ void setPermissionRequested()
setPermissionRequested();
if ([CLLocationManager headingAvailable])
[locationManager startUpdatingHeading];
- [[PushNotificationManager pushManager] startLocationTracking];
};
if ([CLLocationManager locationServicesEnabled])
{
@@ -537,7 +536,6 @@ void setPermissionRequested()
[locationManager stopUpdatingLocation];
if ([CLLocationManager headingAvailable])
[locationManager stopUpdatingHeading];
- [[PushNotificationManager pushManager] stopLocationTracking];
}
@end