Merge "Suppress Eclipse warnings about not closed resources"

This commit is contained in:
Shawn Pearce
2013-07-11 22:38:04 +00:00
committed by Gerrit Code Review
2 changed files with 3 additions and 0 deletions

View File

@@ -64,9 +64,11 @@ public class InitPluginStepsLoader {
private InitStep loadInitStep(File jar) {
try {
@SuppressWarnings("resource")
ClassLoader pluginLoader =
new URLClassLoader(new URL[] {jar.toURI().toURL()},
InitPluginStepsLoader.class.getClassLoader());
@SuppressWarnings("resource")
JarFile jarFile = new JarFile(jar);
Attributes jarFileAttributes = jarFile.getManifest().getMainAttributes();
String initClassName = jarFileAttributes.getValue("Gerrit-InitStep");

View File

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