mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
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
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
// "Change to 'builder.append(1+1).append(s).append(" ")'" "true"
|
||||
class Test {
|
||||
String s;
|
||||
void bar(StringBuilder builder) {
|
||||
buil<caret>der += 1 + 1 + s + " ";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user