summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Rex <julian.rex@mapbox.com>2018-02-08 10:55:17 -0500
committerJulian Rex <julian.rex@mapbox.com>2018-02-09 16:33:29 -0500
commit6895ed2ad13767dc9f8b483ba6c46a7eea3db2df (patch)
treeda21721b7130cb3f14dce5c715ad7ec418a7fcc3
parent71ac206d9f38913856ff5e3851744a8d7be641e5 (diff)
downloadqtlocation-mapboxgl-6895ed2ad13767dc9f8b483ba6c46a7eea3db2df.tar.gz
[ios] added missing return
-rw-r--r--platform/ios/test/MGLMapViewDelegateIntegrationTests.swift2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift b/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift
index 6d8a908597..b66c6b6d1f 100644
--- a/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift
+++ b/platform/ios/test/MGLMapViewDelegateIntegrationTests.swift
@@ -89,5 +89,5 @@ extension MGLMapViewDelegateIntegrationTests: MGLMapViewDelegate {
func mapView(_ mapView: MGLMapView, shouldChangeFrom oldCamera: MGLMapCamera, to newCamera: MGLMapCamera) -> Bool { return false }
- func mapView(_ mapView: MGLMapView, shouldChangeFrom oldCamera: MGLMapCamera, to newCamera: MGLMapCamera, reason: MGLCameraChangeReason) -> Bool {}
+ func mapView(_ mapView: MGLMapView, shouldChangeFrom oldCamera: MGLMapCamera, to newCamera: MGLMapCamera, reason: MGLCameraChangeReason) -> Bool { return false }
}