Skip to content

Commit 1735a5f

Browse files
committed
Bumped index versions to ensure each index is rebuilt based on the new injection detection logic (#235)
1 parent ad4d062 commit 1735a5f

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/main/com/intellij/lang/jsgraphql/ide/project/indexing/GraphQLFragmentNameIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ public DataExternalizer<Boolean> getValueExternalizer() {
113113

114114
@Override
115115
public int getVersion() {
116-
return 0;
116+
return 1;
117117
}
118118

119119
@NotNull

src/main/com/intellij/lang/jsgraphql/ide/project/indexing/GraphQLIdentifierIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ public DataExternalizer<IdentifierKind> getValueExternalizer() {
149149

150150
@Override
151151
public int getVersion() {
152-
return 0;
152+
return 1;
153153
}
154154

155155
@NotNull

src/main/com/intellij/lang/jsgraphql/ide/project/javascript/GraphQLInjectionIndex.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@ public boolean dependsOnFileContent() {
8484

8585
@Override
8686
public int getVersion() {
87-
return 2;
87+
return 3;
8888
}
8989
}

0 commit comments

Comments
 (0)