Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/changeToAppend/after1.java
Bas Leijdekkers 0a71148672 Improve quickfix to replace += operator with StringBuilder on left hand side with append() call
now works on java.lang.Appendable and splits concatenated strings into separate append calls
2012-02-22 16:57:49 +01:00

6 lines
154 B
Java

// "Change to 'appendable.append(1)'" "true"
class Test {
void appendable(StringBuilder appendable) throws IOException {
appendable.append(1);
}
}