mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
#IDEA-256275 Fixed Merge-request: IJ-MR-177887 Merged-by: Marcin Mikosik <marcin.mikosik@jetbrains.com> GitOrigin-RevId: 156ea485dd409ef5ec937da1872f97ede359bdff
9 lines
203 B
Java
9 lines
203 B
Java
// "Remove redundant argument to call 'method(String...)'" "true-preview"
|
|
class A {
|
|
public A() {
|
|
method(<caret>5, new String[] {"abc", "def"});
|
|
}
|
|
|
|
private void method(String... strings) {
|
|
}
|
|
} |