You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@poi.apache.org by ki...@apache.org on 2015/06/24 09:06:02 UTC

svn commit: r1687176 - /poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java

Author: kiwiwings
Date: Wed Jun 24 07:06:01 2015
New Revision: 1687176

URL: http://svn.apache.org/r1687176
Log:
Removed Java7 calls

Modified:
    poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java

Modified: poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java
URL: http://svn.apache.org/viewvc/poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java?rev=1687176&r1=1687175&r2=1687176&view=diff
==============================================================================
--- poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java (original)
+++ poi/trunk/src/ooxml/java/org/apache/poi/openxml4j/util/ZipSecureFile.java Wed Jun 24 07:06:01 2015
@@ -72,14 +72,6 @@ public class ZipSecureFile extends ZipFi
         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 ZipFi
         super(file);
     }
 
-    public ZipSecureFile(String name, Charset charset) throws IOException {
-        super(name, charset);
-    }
-
     public ZipSecureFile(String name) throws IOException {
         super(name);
     }



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@poi.apache.org
For additional commands, e-mail: commits-help@poi.apache.org