8211728: JarFile::versionedStream() does not filter META-INF resources in versioned stream

Reviewed-by: alanb
This commit is contained in:
Xueming Shen 2018-10-08 14:14:52 -07:00
parent 85c6642e38
commit 859d376494
2 changed files with 10 additions and 3 deletions

View file

@ -556,7 +556,8 @@ class JarFile extends ZipFile {
return JUZFA.entryNameStream(this).map(this::getBasename)
.filter(Objects::nonNull)
.distinct()
.map(this::getJarEntry);
.map(this::getJarEntry)
.filter(Objects::nonNull);
}
return stream();
}