<changes>
<release version="3.8-beta6" date="2012-??-??">
+ <action dev="poi-developers" type="fix">52665 - When reading from a ZipFileZipEntrySource that has already been closed, give IllegalArgumentException rather than NPE</action>
<action dev="poi-developers" type="fix">52664 - MAPIMessage may not always have name chunks when checking for 7 bit encodings</action>
<action dev="poi-developers" type="fix">52649 - fixed namespace issue in WordToFoConverter</action>
<action dev="poi-developers" type="fix">52385 - avoid trancated array and vector data when reading OLE properties</action>
}
public Enumeration<? extends ZipEntry> getEntries() {
+ if (zipArchive == null)
+ throw new IllegalStateException("Zip File is closed");
+
return zipArchive.entries();
}
public InputStream getInputStream(ZipEntry entry) throws IOException {
+ if (zipArchive == null)
+ throw new IllegalStateException("Zip File is closed");
+
return zipArchive.getInputStream(entry);
}
}