// "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) { } }