mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-07 01:29:56 +07:00
9 lines
221 B
Java
9 lines
221 B
Java
// "Remove redundant arguments to match 'method(int, T)'" "true"
|
|
class A {
|
|
public A() {
|
|
method(5,<caret> new Exception(), new Exception(), "", 3);
|
|
}
|
|
|
|
private <T extends Exception> void method(int i, T t) {
|
|
}
|
|
} |