Skip to content

Commit

Permalink
fix: exception on analysis of some programs in CLI mode
Browse files Browse the repository at this point in the history
  • Loading branch information
ishche committed Jan 10, 2024
1 parent 87ae80c commit fc74ef7
Showing 1 changed file with 6 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,7 @@
import com.google.inject.Singleton;
import lombok.Setter;
import org.eclipse.lsp.cobol.lsp.jrpc.CobolLanguageClient;
import org.eclipse.lsp4j.MessageActionItem;
import org.eclipse.lsp4j.MessageParams;
import org.eclipse.lsp4j.PublishDiagnosticsParams;
import org.eclipse.lsp4j.ShowMessageRequestParams;
import org.eclipse.lsp4j.*;

import java.io.File;
import java.net.URI;
Expand Down Expand Up @@ -72,6 +69,11 @@ public CompletableFuture<MessageActionItem> showMessageRequest(ShowMessageReques
throw new UnsupportedOperationException();
}

@Override
public CompletableFuture<List<Object>> configuration(ConfigurationParams configurationParams) {
return CompletableFuture.completedFuture(null);
}

@Override
public void logMessage(MessageParams message) {
throw new UnsupportedOperationException();
Expand Down

0 comments on commit fc74ef7

Please sign in to comment.