(id: string, updater: ServerUpdater)
| 71 | return getServersForLanguage(languageId, options); |
| 72 | }, |
| 73 | update(id: string, updater: ServerUpdater): LspServerDefinition | null { |
| 74 | return updateServer(id, updater); |
| 75 | }, |
| 76 | unregister(id: string): boolean { |
| 77 | return unregisterServer(id); |
| 78 | }, |
nothing calls this directly
no test coverage detected