fix ExceptionUtilsTest to compile with java 1.6

This commit is contained in:
Chas Honton 2015-07-24 20:06:15 -07:00
parent b0bbe58eb6
commit fad946a1d7
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ public class ExceptionUtilsTest {
try {
throw new IOException();
} catch (Exception e) {
return ExceptionUtils.rethrow(e);
return ExceptionUtils.<Integer>rethrow(e);
}
}