From efbbb5a0d627b65b33253f4d5f0a92fad82a6d77 Mon Sep 17 00:00:00 2001 From: Vincent Sam Date: Wed, 1 Aug 2018 22:34:52 -0400 Subject: [PATCH] [GH-1440] - Minor refactor, to keep things aligned. --- MapboxNavigation/RouteMapViewController.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MapboxNavigation/RouteMapViewController.swift b/MapboxNavigation/RouteMapViewController.swift index 773543518c..1a2456dc48 100644 --- a/MapboxNavigation/RouteMapViewController.swift +++ b/MapboxNavigation/RouteMapViewController.swift @@ -830,9 +830,9 @@ extension RouteMapViewController: NavigationViewDelegate { private func roadFeature(for line: MGLPolylineFeature) -> (roadName: String?, shieldName: NSAttributedString?) { let roadNameRecord = roadFeatureHelper(ref: line.attribute(forKey: "ref"), - shield: line.attribute(forKey: "shield"), - reflen: line.attribute(forKey: "reflen"), - name: line.attribute(forKey: "name")) + shield: line.attribute(forKey: "shield"), + reflen: line.attribute(forKey: "reflen"), + name: line.attribute(forKey: "name")) return (roadName: roadNameRecord.roadName, shieldName: roadNameRecord.shieldName) }