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:
parent
c0cb680292
commit
7393f122b2
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user