Skip to content

Commit 4f4ac81

Browse files
committed
Remove extra spaces before func.
1 parent a9f164c commit 4f4ac81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/SourceKit/SourceKitServer.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ public final class SourceKitServer: LanguageServer {
9696
}
9797
}
9898

99-
public override func _handleUnknown<R>(_ req: Request<R>) {
99+
public override func _handleUnknown<R>(_ req: Request<R>) {
100100
if req.clientID == ObjectIdentifier(client) {
101101
return super._handleUnknown(req)
102102
}
@@ -111,7 +111,7 @@ public final class SourceKitServer: LanguageServer {
111111
}
112112

113113
/// Handle an unknown notification.
114-
public override func _handleUnknown<N>(_ note: Notification<N>) {
114+
public override func _handleUnknown<N>(_ note: Notification<N>) {
115115
if note.clientID == ObjectIdentifier(client) {
116116
return super._handleUnknown(note)
117117
}

0 commit comments

Comments
 (0)