source searcher: compilation fix

This commit is contained in:
Vladislav.Soroka
2015-02-20 19:35:08 +03:00
parent 3a32a16c00
commit f8c698fdc1
@@ -84,7 +84,11 @@ public abstract class SourceSearcher {
}
}
finally {
StreamUtil.closeStream(jarFile);
try {
jarFile.close();
}
catch (IOException ignore) {
}
}
}
catch (IOException ignore) {