We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c3303 commit 60fa1a8Copy full SHA for 60fa1a8
Sources/SWBBuildService/Messages.swift
@@ -99,12 +99,10 @@ private struct MacCatalystUnavailableFrameworkNamesHandler: MessageHandler {
99
}
100
101
102
+// TODO: Delete once all clients are no longer calling the public APIs which invoke this message
103
private struct AppleSystemFrameworkNamesHandler: MessageHandler {
104
func handle(request: Request, message: AppleSystemFrameworkNamesRequest) async throws -> StringListResponse {
- guard let buildService = request.service as? BuildService else {
105
- throw StubError.error("service object is not of type BuildService")
106
- }
107
- return try await StringListResponse([])
+ return StringListResponse([])
108
109
110
0 commit comments