MopeSWTP-SS21 / MopeSWTP

MIT License
1 stars 0 forks source link

Cleans up return value of executeCommand #121

Closed CSchoel closed 3 years ago

CSchoel commented 3 years ago

The code for executeCommand violated the LSP protocol by wrapping the result in another CompletableFuture object. This fix is required to make the vscode client work again.

Old return type: CompletableFuture<CompletableFuture<String>> New return type: CompletableFuture<String>