Skip to content

Commit

Permalink
Fix Package.swift indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
silviaespanagil committed Jun 19, 2024
1 parent ce9eb9e commit f5e30cd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
15 changes: 7 additions & 8 deletions EasyMapLibrary/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,16 @@ let package = Package(
.iOS(.v17),
],
products: [
// Products define the executables and libraries a package produces, making them visible to other packages.
.library(
name: "EasyMapLibrary",
targets: ["EasyMapLibrary"]),
],
targets: [
.target(
name: "EasyMapLibrary",
dependencies: []),
.testTarget(
name: "EasyMapLibraryTests",
dependencies: ["EasyMapLibrary"]),
]
.target(
name: "EasyMapLibrary",
dependencies: []),
.testTarget(
name: "EasyMapLibraryTests",
dependencies: ["EasyMapLibrary"]),
]
)
3 changes: 0 additions & 3 deletions EasyMapLibrary/Sources/EasyMapLibrary/MapView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@ import CoreLocation
import MapKit
import SwiftUI

import SwiftUI
import MapKit

public struct MapView: View {

@ObservedObject private var mapManager: MapManager
Expand Down

0 comments on commit f5e30cd

Please sign in to comment.