修复ZipReader.get调用reset异常问题

This commit is contained in:
Looly
2023-05-14 22:48:52 +08:00
parent 69fe552c63
commit 61ffa24917
2 changed files with 2 additions and 2 deletions

View File

@@ -109,7 +109,6 @@ public class ZipReader implements Closeable {
}
} else {
try {
this.in.reset();
ZipEntry zipEntry;
while (null != (zipEntry = in.getNextEntry())) {
if (zipEntry.getName().equals(path)) {