소스 검색

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)