mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
#IDEA-256275 Fixed Merge-request: IJ-MR-177887 Merged-by: Marcin Mikosik <marcin.mikosik@jetbrains.com> GitOrigin-RevId: 156ea485dd409ef5ec937da1872f97ede359bdff
9 lines
185 B
Java
9 lines
185 B
Java
// "Remove redundant argument to call 'method(int, T...)'" "true-preview"
|
|
class A {
|
|
public void foo() {
|
|
method(1, "def", 2);
|
|
}
|
|
|
|
private <T> void method(int i, T... ts) {
|
|
}
|
|
} |