Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/removeRedundantArgument/beforeGeneric.java
2012-05-12 21:07:25 +04:00

9 lines
220 B
Java

// "Remove redundant arguments to call '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) {
}
}