Remove unnecessary @SuppressWarnings("resource") annotation in IoUtil

Change-Id: I2d414da1297b4c1a8261331dcb7ea2f107ce6f73
This commit is contained in:
David Pursehouse 2013-04-30 12:04:28 +09:00
parent bfdc2a74bb
commit ff3755f8d1

View File

@ -57,7 +57,6 @@ public final class IoUtil {
if (!(cl instanceof URLClassLoader)) {
throw noAddURL("Not loaded by URLClassLoader", null);
}
@SuppressWarnings("resource")
URLClassLoader urlClassLoader = (URLClassLoader) cl;
Method addURL;