Browse Source

remove unused delegate methods

cyberta 5 năm trước cách đây
mục cha
commit
d55d33e324
1 tập tin đã thay đổi với 0 bổ sung9 xóa
  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)