Revert "Add some logging to debug CTRL-click issue"
This reverts commit 618a75e09c.
This commit is contained in:
@@ -358,6 +358,7 @@ public class SimpleTextDocumentService implements TextDocumentService, DocumentE
|
||||
@Override
|
||||
public CompletableFuture<Either<List<? extends Location>, List<? extends LocationLink>>> definition(
|
||||
TextDocumentPositionParams position) {
|
||||
|
||||
DefinitionHandler h = this.definitionHandler;
|
||||
if (h != null) {
|
||||
return async.invoke(() -> {
|
||||
@@ -366,7 +367,6 @@ public class SimpleTextDocumentService implements TextDocumentService, DocumentE
|
||||
// vscode client does not like to recieve null result. See: https://github.com/spring-projects/sts4/issues/309
|
||||
locations = ImmutableList.of();
|
||||
}
|
||||
log.info("Found {} definitions", locations.size());
|
||||
return Either.forLeft(locations);
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user