Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantStringOperation/beforeStringIntern.java
Tagir Valeev 31b328cdca RedundantStringOperation: append("") (IDEA-180178), intern()
ConstantStringInternInspection removed
2017-10-11 14:35:28 +07:00

4 lines
130 B
Java

// "Remove redundant 'intern' call" "true"
class Foo {
private static final String x = ("Hello "+"World"+'!').inte<caret>rn();
}