diff options
Diffstat (limited to 'src/ooxml/java/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.java')
-rw-r--r-- | src/ooxml/java/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ooxml/java/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.java b/src/ooxml/java/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.java index 4c2b9df3e7..dfa9924617 100644 --- a/src/ooxml/java/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.java +++ b/src/ooxml/java/org/apache/poi/openxml4j/util/ZipInputStreamZipEntrySource.java @@ -45,7 +45,7 @@ public class ZipInputStreamZipEntrySource implements ZipEntrySource { * work with the entries at-will. */ public ZipInputStreamZipEntrySource(ThresholdInputStream inp) throws IOException { - zipEntries = new ArrayList<FakeZipEntry>(); + zipEntries = new ArrayList<>(); boolean going = true; while(going) { |