summaryrefslogtreecommitdiffstats
path: root/integration
diff options
context:
space:
mode:
authorJon Bratseth <bratseth@gmail.com>2022-02-18 15:55:41 +0100
committerJon Bratseth <bratseth@gmail.com>2022-02-18 15:55:41 +0100
commit8aead4aa69fc415aa90bf31b8e41e3cad4f600d4 (patch)
treec048fc4066eb126a9e9f3ea97f96156fa67ce278 /integration
parent99dbe4e87730d1eb9e6d29a61b4789d3308e59a1 (diff)
Add todo
Diffstat (limited to 'integration')
-rw-r--r--integration/intellij/src/main/java/ai/vespa/intellij/schema/findUsages/SdFindUsagesProvider.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/integration/intellij/src/main/java/ai/vespa/intellij/schema/findUsages/SdFindUsagesProvider.java b/integration/intellij/src/main/java/ai/vespa/intellij/schema/findUsages/SdFindUsagesProvider.java
index bd79f007fde..f131fc58376 100644
--- a/integration/intellij/src/main/java/ai/vespa/intellij/schema/findUsages/SdFindUsagesProvider.java
+++ b/integration/intellij/src/main/java/ai/vespa/intellij/schema/findUsages/SdFindUsagesProvider.java
@@ -22,6 +22,7 @@ import ai.vespa.intellij.schema.psi.impl.SdNamedElementImpl;
public class SdFindUsagesProvider implements FindUsagesProvider {
public WordsScanner getWordsScanner() {
+ // TODO: Not used at the moment (?) as we search by brute force
return new DefaultWordsScanner(new SdLexerAdapter(),
TokenSet.create(SdTypes.ID_REG, SdTypes.ID_WITH_DASH_REG, SdTypes.IDENTIFIER_VAL,
SdTypes.IDENTIFIER_WITH_DASH_VAL),