You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by jo...@hyperreal.org on 1999/11/29 10:40:47 UTC

cvs commit: jakarta-tools/ant/src/main/org/apache/tools/ant/taskdefs Zip.java

jons        99/11/29 01:40:46

  Modified:    ant/src/main/org/apache/tools/ant/taskdefs Zip.java
  Log:
  minor fixes
  
  Revision  Changes    Path
  1.2       +2 -7      jakarta-tools/ant/src/main/org/apache/tools/ant/taskdefs/Zip.java
  
  Index: Zip.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tools/ant/src/main/org/apache/tools/ant/taskdefs/Zip.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Zip.java	1999/11/25 02:27:01	1.1
  +++ Zip.java	1999/11/29 09:40:44	1.2
  @@ -116,10 +116,6 @@
           }
       }
       
  -    public void setManifest(String manifestFilename) {
  -    manifest = project.resolveFile(manifestFilename);
  -    }
  -
       public void execute() throws BuildException {
           project.log("Building zip: " + zipFile.getAbsolutePath());
       
  @@ -141,7 +137,7 @@
                           zipFile(f, zOut, s);
                       }
                   } else {
  -                    project.log("Ignored: " + s);
  +                    project.log("Zip Ignored: " + s, Project.MSG_WARN);
                   }
               }
       
  @@ -168,7 +164,7 @@
                       zipFile(file, zOut, vPath + f);
                   }
               } else {
  -                project.log("Ignored: " + f);
  +                project.log("Zip Ignored: " + f, Project.MSG_WARN);
               }
           }
       }
  @@ -195,7 +191,6 @@
           fIn.close();
       }
   }
  -