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

7 lines
161 B
Java

// "Remove redundant 'toString' call" "true"
class Foo {
public static void main(String[] args) {
/*valuable comment!!!*/
String s = args[0];
}
}