From c19466daa5a22bff7dea95d5207347190f60578e Mon Sep 17 00:00:00 2001 From: Garth Vander Houwen Date: Fri, 26 May 2023 21:00:49 -0700 Subject: [PATCH] Remove unused struct --- Meshtastic/Views/Map/Custom/MapViewSwiftUI.swift | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Meshtastic/Views/Map/Custom/MapViewSwiftUI.swift b/Meshtastic/Views/Map/Custom/MapViewSwiftUI.swift index e36b62e5..d8c1d001 100644 --- a/Meshtastic/Views/Map/Custom/MapViewSwiftUI.swift +++ b/Meshtastic/Views/Map/Custom/MapViewSwiftUI.swift @@ -16,12 +16,6 @@ struct PolygonInfo: Codable { let title, subtitle: String? } -struct PolylineInfo: Codable { - let stroke: String? - let strokeWidth, strokeOpacity: Int? - let title, subtitle: String? -} - func degreesToRadians(_ number: Double) -> Double { return number * .pi / 180 }