use plain matching for completing duplicate string literals

otherwise we get a freeze in very long literals (IDEA-198887)
This commit is contained in:
peter
2018-09-14 12:07:49 +02:00
parent 83269bbdfb
commit 9317647cba
4 changed files with 9 additions and 2 deletions
@@ -0,0 +1,5 @@
class Bar {
String a = "abc.def"
String b = "abc.d<caret>"
}