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

7 lines
191 B
Java

// "Remove redundant 'toString' call" "false"
class Foo {
public static void main(String[] args) {
Object[] a = args;
String s = a[0].toString<caret>(/*valuable comment!!!*/);
}
}