mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 17:51:09 +07:00
9 lines
228 B
Java
9 lines
228 B
Java
// "Remove redundant arguments to call 'method(int, T)'" "true-preview"
|
|
class A {
|
|
public A() {
|
|
method(5,<caret> new Exception(), new Exception(), "", 3);
|
|
}
|
|
|
|
private <T extends Exception> void method(int i, T t) {
|
|
}
|
|
} |