Skip to content

Commit

Permalink
Use only one single invocation, fix warning (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
mattmassicotte authored Jan 10, 2025
1 parent 9191683 commit f99efda
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let package = Package(
name: "Swift5Examples",
dependencies: ["Library", "ObjCLibrary"],
swiftSettings: [
.swiftLanguageVersion(.v5),
.swiftLanguageMode(.v5),
.enableUpcomingFeature("StrictConcurrency"),
]
),
Expand Down
2 changes: 0 additions & 2 deletions Sources/Examples/IncrementalMigration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,5 @@ func exerciseIncrementalMigrationExamples() async {
let transport = JPKJetPack()

await site.acceptTransport(transport)
await site.acceptTransport(transport)
await site.acceptTransport(transport)
}
}

0 comments on commit f99efda

Please sign in to comment.