diff --git a/MapboxNavigation/RouteMapViewController.swift b/MapboxNavigation/RouteMapViewController.swift index 42888beb..1157b6dc 100644 --- a/MapboxNavigation/RouteMapViewController.swift +++ b/MapboxNavigation/RouteMapViewController.swift @@ -671,8 +671,6 @@ extension RouteMapViewController: StepsViewControllerDelegate { } } -// MARK: - Keyboard Handling - private extension RouteMapViewController { @objc func recenter(_ sender: AnyObject) { @@ -911,20 +909,3 @@ private extension RouteMapViewController { } } } - -private extension UIView.AnimationOptions { - init(curve: UIView.AnimationCurve) { - switch curve { - case .easeIn: - self = .curveEaseIn - case .easeOut: - self = .curveEaseOut - case .easeInOut: - self = .curveEaseInOut - case .linear: - self = .curveLinear - @unknown default: - fatalError("Unknown curve") - } - } -}