Skip to content

Commit 51e5d22

Browse files
committed
Removed string
1 parent d6ae748 commit 51e5d22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/Shared/PeripheryError.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ public enum PeripheryError: Error, LocalizedError, CustomStringConvertible {
55
case shellCommandFailed(cmd: String, args: [String], status: Int32, output: String)
66
case shellOutputEncodingFailed(cmd: String, args: [String], encoding: String.Encoding)
77
case usageError(String)
8-
case xcodeProjectsAreUnsupported(message: String)
8+
case xcodeProjectsAreUnsupported
99
case underlyingError(Error)
1010
case invalidScheme(name: String, project: String)
1111
case sourceGraphIntegrityError(message: String)
@@ -56,7 +56,7 @@ public enum PeripheryError: Error, LocalizedError, CustomStringConvertible {
5656
return "JSON deserialization failed: \(describe(error))\nJSON:\n\(json)"
5757
case let .indexStoreNotFound(derivedDataPath):
5858
return "Failed to find index datastore at path: \(derivedDataPath)"
59-
case .xcodeProjectsAreUnsupported(message: let message):
59+
case .xcodeProjectsAreUnsupported:
6060
return "Xcode projects are not supported on this platform"
6161
}
6262
}

0 commit comments

Comments
 (0)