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 a9f164c commit 4f4ac81Copy full SHA for 4f4ac81
Sources/SourceKit/SourceKitServer.swift
@@ -96,7 +96,7 @@ public final class SourceKitServer: LanguageServer {
96
}
97
98
99
- public override func _handleUnknown<R>(_ req: Request<R>) {
+ public override func _handleUnknown<R>(_ req: Request<R>) {
100
if req.clientID == ObjectIdentifier(client) {
101
return super._handleUnknown(req)
102
@@ -111,7 +111,7 @@ public final class SourceKitServer: LanguageServer {
111
112
113
/// Handle an unknown notification.
114
- public override func _handleUnknown<N>(_ note: Notification<N>) {
+ public override func _handleUnknown<N>(_ note: Notification<N>) {
115
if note.clientID == ObjectIdentifier(client) {
116
return super._handleUnknown(note)
117
0 commit comments