mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inline redundant array creation: preserve comments (IDEA-61141 )
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
class Test {
|
||||
void foo(String... strs){}
|
||||
void bar() {
|
||||
foo(new S<caret>tring[] {
|
||||
"edwqefwe", //my comment
|
||||
});
|
||||
}
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
class Test {
|
||||
void foo(String... strs){}
|
||||
void bar() {
|
||||
foo("edwqefwe", //my comment
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user