Include the META-INF files in the digest.

We used to ignore them for some reason but I think that whatever
benefits that yielded have long been overshadowed by detriments.
This commit is contained in:
Michael Bayne
2016-11-04 16:41:37 -07:00
parent ba5b31300e
commit fc9b6d3c89
@@ -232,13 +232,6 @@ public class Resource
int eidx = 0;
for (JarEntry entry : entries) {
// skip metadata; we just want the goods
if (entry.getName().startsWith("META-INF")) {
updateProgress(obs, eidx, entries.size());
continue;
}
// add this file's data to the MD5 hash
InputStream in = null;
try {
in = jar.getInputStream(entry);