Skip to content

Commit 89cc586

Browse files
committed
GH-1530: fix issue with single file scan assuminig the index to be complete from the beginning
1 parent 53cc57f commit 89cc586

File tree

1 file changed

+1
-1
lines changed
  • headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/utils

1 file changed

+1
-1
lines changed

headless-services/spring-boot-language-server/src/main/java/org/springframework/ide/vscode/boot/java/utils/SpringIndexerJava.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ public void accept(String docURI, Diagnostic diagnostic) {
396396
IProblemCollector problemCollector = problemCollectorCreator.apply(docRef, diagnosticsAggregator);
397397

398398
SpringIndexerJavaContext context = new SpringIndexerJavaContext(project, cu, docURI, file,
399-
lastModified, docRef, content, problemCollector, new ArrayList<>(), !ignoreMethodBodies, true, result);
399+
lastModified, docRef, content, problemCollector, new ArrayList<>(), !ignoreMethodBodies, false, result);
400400

401401
scanAST(context, true);
402402

0 commit comments

Comments
 (0)