Files
openide/java/java-tests/testData/codeInsight/completion/word/CompleteStringLiteralCopy.java
peter 9317647cba use plain matching for completing duplicate string literals
otherwise we get a freeze in very long literals (IDEA-198887)
2018-09-14 12:07:49 +02:00

6 lines
66 B
Java

class Bar {
String a = "abc.def"
String b = "abc.d<caret>"
}