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