Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantStringOperation/beforeStringToString.java
T
2017-10-11 14:35:28 +07:00

6 lines
170 B
Java

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