Fix some raw types and other Eclipse warnings

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@829375 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-10-24 14:26:35 +00:00
parent 823e75f9b3
commit 6fea27514a
1 changed files with 11 additions and 8 deletions

View File

@ -125,7 +125,7 @@ private Throwable createExceptionWithCause() {
public void testConstructor() {
assertNotNull(new ExceptionUtils());
Constructor[] cons = ExceptionUtils.class.getDeclaredConstructors();
Constructor<?>[] cons = ExceptionUtils.class.getDeclaredConstructors();
assertEquals(1, cons.length);
assertEquals(true, Modifier.isPublic(cons[0].getModifiers()));
assertEquals(true, Modifier.isPublic(ExceptionUtils.class.getModifiers()));
@ -299,25 +299,25 @@ public void testGetThrowables_Throwable_recursiveCause() {
//-----------------------------------------------------------------------
public void testGetThrowableList_Throwable_null() {
List throwables = ExceptionUtils.getThrowableList(null);
List<?> throwables = ExceptionUtils.getThrowableList(null);
assertEquals(0, throwables.size());
}
public void testGetThrowableList_Throwable_withoutCause() {
List throwables = ExceptionUtils.getThrowableList(withoutCause);
List<?> throwables = ExceptionUtils.getThrowableList(withoutCause);
assertEquals(1, throwables.size());
assertSame(withoutCause, throwables.get(0));
}
public void testGetThrowableList_Throwable_nested() {
List throwables = ExceptionUtils.getThrowableList(nested);
List<?> throwables = ExceptionUtils.getThrowableList(nested);
assertEquals(2, throwables.size());
assertSame(nested, throwables.get(0));
assertSame(withoutCause, throwables.get(1));
}
public void testGetThrowableList_Throwable_withCause() {
List throwables = ExceptionUtils.getThrowableList(withCause);
List<?> throwables = ExceptionUtils.getThrowableList(withCause);
assertEquals(3, throwables.size());
assertSame(withCause, throwables.get(0));
assertSame(nested, throwables.get(1));
@ -325,19 +325,19 @@ public void testGetThrowableList_Throwable_withCause() {
}
public void testGetThrowableList_Throwable_jdkNoCause() {
List throwables = ExceptionUtils.getThrowableList(jdkNoCause);
List<?> throwables = ExceptionUtils.getThrowableList(jdkNoCause);
assertEquals(1, throwables.size());
assertSame(jdkNoCause, throwables.get(0));
}
public void testGetThrowableList_Throwable_selfCause() {
List throwables = ExceptionUtils.getThrowableList(selfCause);
List<?> throwables = ExceptionUtils.getThrowableList(selfCause);
assertEquals(1, throwables.size());
assertSame(selfCause, throwables.get(0));
}
public void testGetThrowableList_Throwable_recursiveCause() {
List throwables = ExceptionUtils.getThrowableList(cyclicCause);
List<?> throwables = ExceptionUtils.getThrowableList(cyclicCause);
assertEquals(3, throwables.size());
assertSame(cyclicCause, throwables.get(0));
assertSame(cyclicCause.getCause(), throwables.get(1));
@ -592,6 +592,7 @@ public void setCause(Throwable cause) {
* return value of <code>Throwable</code>.
*/
private static class ExceptionWithoutCause extends Exception {
@SuppressWarnings("unused")
public void getTargetException() {
}
}
@ -600,9 +601,11 @@ public void getTargetException() {
// prior to a rewrite of this test class.
private static class NestableRuntimeException extends RuntimeException {
public NestableRuntimeException() { super(); }
@SuppressWarnings("unused")
public NestableRuntimeException(Throwable t) { super(t); }
}
private static class NestableException extends Exception {
@SuppressWarnings("unused")
public NestableException() { super(); }
public NestableException(Throwable t) { super(t); }
}