This commit is contained in:
aboyko
2023-06-08 13:44:51 -04:00
2 changed files with 3 additions and 2 deletions

View File

@@ -82,7 +82,8 @@ public class InProjectSymbolsProvider implements SymbolsProvider {
IProject project = this.project.get();
if (project != null) {
dumpBeansModel(project.getName());
// dumpBeansModel(project.getName()); // for debug purposes
String projectLocationPrefix = LSPEclipseUtils.toUri(project).toASCIIString();
query = "locationPrefix:" + projectLocationPrefix + "?" + query;

View File

@@ -76,7 +76,7 @@ public class SpringIndexerJava implements SpringIndexer {
// whenever the implementation of the indexer changes in a way that the stored data in the cache is no longer valid,
// we need to change the generation - this will result in a re-indexing due to no up-to-date cache data being found
private static final String GENERATION = "GEN-2";
private static final String GENERATION = "GEN-3";
private final SymbolHandler symbolHandler;
private final AnnotationHierarchyAwareLookup<SymbolProvider> symbolProviders;