mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
inline redundant array: remove tailing commas (IDEA-67212)
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
display(new S<caret>tring[]{
|
||||
"hi",
|
||||
});
|
||||
}
|
||||
|
||||
private static void display(String... messages) { }
|
||||
}
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
public class Main {
|
||||
public static void main(String[] args) {
|
||||
display("hi");
|
||||
}
|
||||
|
||||
private static void display(String... messages) { }
|
||||
}
|
||||
Reference in New Issue
Block a user