fixed signature of shutdown method to match updates in lsp4j

This commit is contained in:
Martin Lippert
2016-11-30 16:57:02 +01:00
parent 72603ac855
commit 415ec6e22d

View File

@@ -86,7 +86,7 @@ public abstract class SimpleLanguageServer implements LanguageServer, LanguageCl
protected abstract ServerCapabilities getServerCapabilities();
@Override
public CompletableFuture<Void> shutdown() {
public CompletableFuture<Object> shutdown() {
return Futures.of(null);
}