Преглед на файлове

remove unused delegate methods

cyberta преди 5 години
родител
ревизия
d55d33e324
променени са 1 файла, в които са добавени 0 реда и са изтрити 9 реда
  1. 0 9
      deltachat-ios/Helper/LocationManager.swift

+ 0 - 9
deltachat-ios/Helper/LocationManager.swift

@@ -90,15 +90,6 @@ class LocationManager: NSObject, CLLocationManagerDelegate {
         }
     }
 
-    func locationManagerDidPauseLocationUpdates(_ manager: CLLocationManager) {
-        logger.debug("LOCATION: location manager did pause location updates")
-    }
-
-    func locationManagerDidResumeLocationUpdates(_ manager: CLLocationManager) {
-        logger.debug("LOCATION: location manager did resume location updates")
-    }
-
-
     func isBetterLocation(newLocation: CLLocation, lastLocation: CLLocation?) -> Bool {
         guard let lastLocation = lastLocation else {
             return !isNewLocationOutdated(newLocation: newLocation) && hasValidAccuracy(newLocation: newLocation)