瀏覽代碼

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)