Skip to content

Commit

Permalink
Run swiftformat
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthetechie committed Apr 7, 2024
1 parent 7b28bd4 commit 9248395
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ public extension MapViewCamera {
state = .trackingUserLocationWithHeading(zoom: newZoom, pitch: pitch)
case let .trackingUserLocationWithCourse(_, pitch):
state = .trackingUserLocationWithCourse(zoom: newZoom, pitch: pitch)
case .rect(_, _):
case .rect:
return
case .showcase(_):
case .showcase:
return
}

Expand All @@ -44,9 +44,9 @@ public extension MapViewCamera {
state = .trackingUserLocationWithHeading(zoom: zoom + increment, pitch: pitch)
case let .trackingUserLocationWithCourse(zoom, pitch):
state = .trackingUserLocationWithCourse(zoom: zoom + increment, pitch: pitch)
case .rect(_, _):
case .rect:
return
case .showcase(_):
case .showcase:
return
}

Expand All @@ -71,9 +71,9 @@ public extension MapViewCamera {
state = .trackingUserLocationWithHeading(zoom: zoom, pitch: newPitch)
case let .trackingUserLocationWithCourse(zoom, _):
state = .trackingUserLocationWithCourse(zoom: zoom, pitch: newPitch)
case .rect(_, _):
case .rect:
return
case .showcase(_):
case .showcase:
return
}

Expand Down

0 comments on commit 9248395

Please sign in to comment.