IN PROGRESS - BATCH-709: Change all collections to use generics

This commit is contained in:
robokaso
2008-07-17 12:38:03 +00:00
parent 1e56dcd4cc
commit 475dce7649
25 changed files with 74 additions and 76 deletions

View File

@@ -131,7 +131,7 @@ public class SimpleLimitExceptionHandler implements ExceptionHandler {
* handler uses single counter that is incremented when one of the
* recognized exception exceptionClasses is handled.
*/
public void setExceptionClasses(Class<? extends Throwable>[] classes) {
public void setExceptionClasses(Class<?>[] classes) {
this.exceptionClasses = classes;
}