Skip to content

Commit 9c95da9

Browse files
committed
update indexer generations for upcoming release
1 parent 39cdee4 commit 9c95da9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public class SpringFactoriesIndexer implements SpringIndexer {
6464

6565
// whenever the implementation of the indexer changes in a way that the stored data in the cache is no longer valid,
6666
// we need to change the generation - this will result in a re-indexing due to no up-to-date cache data being found
67-
private static final String GENERATION = "GEN-13";
67+
private static final String GENERATION = "GEN-14";
6868

6969
private static final String SYMBOL_KEY = "symbols";
7070
private static final String BEANS_KEY = "beans";

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
@@ -92,7 +92,7 @@ public class SpringIndexerJava implements SpringIndexer {
9292

9393
// whenever the implementation of the indexer changes in a way that the stored data in the cache is no longer valid,
9494
// we need to change the generation - this will result in a re-indexing due to no up-to-date cache data being found
95-
private static final String GENERATION = "GEN-20";
95+
private static final String GENERATION = "GEN-21";
9696
private static final String INDEX_FILES_TASK_ID = "index-java-source-files-task-";
9797

9898
private static final String SYMBOL_KEY = "symbols";

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class SpringIndexerXML implements SpringIndexer {
5656

5757
// whenever the implementation of the indexer changes in a way that the stored data in the cache is no longer valid,
5858
// we need to change the generation - this will result in a re-indexing due to no up-to-date cache data being found
59-
private static final String GENERATION = "GEN-11";
59+
private static final String GENERATION = "GEN-12";
6060

6161
private static final String SYMBOL_KEY = "symbols";
6262
private static final String BEANS_KEY = "beans";

0 commit comments

Comments
 (0)