Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/redundantStringOperation/beforeObjectToString.java
Tagir Valeev e4efb836cd RedundantStringOperationInspection: fixes after review IDEA-CR-25339
1. messages cleanup
2. new StringBuilder(""). PrintStream.println("") are warned
2017-10-17 10:58:07 +07:00

7 lines
193 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!!!*/);
}
}