From: Andreas Beeker Date: Wed, 24 Jun 2015 07:06:01 +0000 (+0000) Subject: Removed Java7 calls X-Git-Tag: REL_3_13_BETA1~80 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=27ca5d522afca852abd5507e3f8c430552176071;p=poi.git Removed Java7 calls git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1687176 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java b/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java index b2f1d82a83..60b31ee278 100644 --- a/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java +++ b/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java @@ -72,14 +72,6 @@ public class ZipSecureFile extends ZipFile { MAX_ENTRY_SIZE = maxEntrySize; } - public ZipSecureFile(File file, Charset charset) throws IOException { - super(file, charset); - } - - public ZipSecureFile(File file, int mode, Charset charset) throws IOException { - super(file, mode, charset); - } - public ZipSecureFile(File file, int mode) throws IOException { super(file, mode); } @@ -88,10 +80,6 @@ public class ZipSecureFile extends ZipFile { super(file); } - public ZipSecureFile(String name, Charset charset) throws IOException { - super(name, charset); - } - public ZipSecureFile(String name) throws IOException { super(name); }