mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +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:
+11
@@ -0,0 +1,11 @@
|
||||
package com.intellij.codeInsight.daemon.quickFix;
|
||||
|
||||
public class ChangeToAppendTest extends LightQuickFixTestCase {
|
||||
|
||||
public void test() throws Exception { doAllTests(); }
|
||||
|
||||
@Override
|
||||
protected String getBasePath() {
|
||||
return "/codeInsight/daemonCodeAnalyzer/quickFix/changeToAppend";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user