Skip to content

Commit 991b893

Browse files
authored
Merge pull request swiftlang#1907 from ahoppen/remove-unused-method
Remove `SourceKitLSPServer.openGeneratedInterface`
2 parents c214a5f + 2f53e7c commit 991b893

File tree

1 file changed

+0
-16
lines changed

1 file changed

+0
-16
lines changed

Sources/SourceKitLSP/SourceKitLSPServer.swift

Lines changed: 0 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1386,22 +1386,6 @@ extension SourceKitLSPServer {
13861386
return try await languageService.hover(req)
13871387
}
13881388

1389-
func openGeneratedInterface(
1390-
document: DocumentURI,
1391-
moduleName: String,
1392-
groupName: String?,
1393-
symbolUSR symbol: String?,
1394-
workspace: Workspace,
1395-
languageService: LanguageService
1396-
) async throws -> GeneratedInterfaceDetails? {
1397-
return try await languageService.openGeneratedInterface(
1398-
document: document,
1399-
moduleName: moduleName,
1400-
groupName: groupName,
1401-
symbolUSR: symbol
1402-
)
1403-
}
1404-
14051389
/// Handle a workspace/symbol request, returning the SymbolInformation.
14061390
/// - returns: An array with SymbolInformation for each matching symbol in the workspace.
14071391
func workspaceSymbols(_ req: WorkspaceSymbolsRequest) async throws -> [WorkspaceSymbolItem]? {

0 commit comments

Comments
 (0)