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:
+6
@@ -0,0 +1,6 @@
|
||||
// "Change to 'appendable.append(1)'" "true"
|
||||
class Test {
|
||||
void appendable(StringBuilder appendable) throws IOException {
|
||||
appendab<caret>le += 1;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user