https://bz.apache.org/bugzilla/show_bug.cgi?id=67579

--- Comment #2 from nniesen...@gmail.com ---
ZipPackage 5.2.4 changed to a try-with-resources which is : 

130:    ZipPackage(InputStream in, PackageAccess access) throws IOException {
131:        super(access);
132:        try (ZipArchiveThresholdInputStream zis =
ZipHelper.openZipStream(in)) {
133:            this.zipArchive = new ZipInputStreamZipEntrySource(zis);


ZipPackage 5.2.3 didn't close the input stream:
128:    ZipPackage(InputStream in, PackageAccess access) throws IOException {
129:        super(access);
130:        ZipArchiveThresholdInputStream zis = ZipHelper.openZipStream(in);
// NOSONAR
131:        try {
132:            this.zipArchive = new ZipInputStreamZipEntrySource(zis);

-- 
You are receiving this mail because:
You are the assignee for the bug.
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@poi.apache.org
For additional commands, e-mail: dev-h...@poi.apache.org

Reply via email to