修复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

@ -2,7 +2,7 @@
# 🚀Changelog
-------------------------------------------------------------------------------------------------------------
# 5.8.19.M1 (2023-05-11)
# 5.8.19.M1 (2023-05-14)
### 🐣新特性
* 【db 】 优化HttpRequest.toString()内容打印issue#3072@Github
@ -18,6 +18,7 @@
* 【core 】 修复JSONUtil.toBean目标存在Map字段无序问题issue#I6YN2A@Gitee
* 【http 】 修复HttpDownloader.downloadFile 方法缺少static问题issue#I6Z8VU@Gitee
* 【core 】 修复NumberUtil mul 传入null的string入参报错问题issue#I70JB3@Gitee
* 【core 】 修复ZipReader.get调用reset异常问题issue#3099@Github
-------------------------------------------------------------------------------------------------------------
# 5.8.18 (2023-04-27)

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)) {