Removed Java7 calls

git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1687176 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Andreas Beeker 2015-06-24 07:06:01 +00:00
parent c0cb680292
commit 7393f122b2

View File

@ -72,14 +72,6 @@ public class ZipSecureFile extends ZipFile {
MAX_ENTRY_SIZE = maxEntrySize; 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 { public ZipSecureFile(File file, int mode) throws IOException {
super(file, mode); super(file, mode);
} }
@ -88,10 +80,6 @@ public class ZipSecureFile extends ZipFile {
super(file); super(file);
} }
public ZipSecureFile(String name, Charset charset) throws IOException {
super(name, charset);
}
public ZipSecureFile(String name) throws IOException { public ZipSecureFile(String name) throws IOException {
super(name); super(name);
} }