Skip to content

Commit bf6ea45

Browse files
committed
Make SwiftSDK.merge function internal and fix line-length formatting
1 parent bb6a0d8 commit bf6ea45

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Sources/PackageModel/SwiftSDKs/SwiftSDK.swift

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,10 @@ public struct SwiftSDK: Equatable {
382382
}
383383
}
384384

385-
public mutating func merge(with newConfiguration: PathsConfiguration<String>, relativeTo basePath: Path?) throws -> [String] where Path == Basics.AbsolutePath {
385+
mutating func merge(
386+
with newConfiguration: PathsConfiguration<String>,
387+
relativeTo basePath: Path?
388+
) throws -> [String] where Path == Basics.AbsolutePath {
386389
var updatedProperties: [String] = []
387390
if let sdkRootPath = newConfiguration.sdkRootPath {
388391
self.sdkRootPath = try AbsolutePath(validating: sdkRootPath, relativeTo: basePath)

0 commit comments

Comments
 (0)