Skip to content

Commit

Permalink
-Fixed Indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljosua1 committed Oct 8, 2024
1 parent 3e3f03e commit 8f6bb8d
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -160,12 +160,12 @@ class MapLibreMapController: NSObject, FlutterPlatformView, MLNMapViewDelegate,
}
case "map#clearAmbientCache":
MLNOfflineStorage.shared.clearAmbientCache {
error in
if let error = error {
result(error)
} else {
result(nil)
}
error in
if let error = error {
result(error)
} else {
result(nil)
}
}
case "map#updateMyLocationTrackingMode":
guard let arguments = methodCall.arguments as? [String: Any] else { return }
Expand Down

0 comments on commit 8f6bb8d

Please sign in to comment.