Browse Source

make new zipFile signature final

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@901063 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 15 years ago
parent
commit
098280bc27
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      src/main/org/apache/tools/ant/taskdefs/Zip.java

+ 4
- 3
src/main/org/apache/tools/ant/taskdefs/Zip.java View File

@@ -1824,9 +1824,10 @@ public class Zip extends MatchingTask {
* @since Ant 1.8.0
* @throws IOException on error
*/
protected void zipFile(InputStream in, ZipOutputStream zOut, String vPath,
long lastModified, File fromArchive,
int mode, ZipExtraField[] extra)
protected final void zipFile(InputStream in, ZipOutputStream zOut,
String vPath, long lastModified,
File fromArchive, int mode,
ZipExtraField[] extra)
throws IOException {
try {
setCurrentExtraFields(extra);


Loading…
Cancel
Save