Browse Source

Super is redundent.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269691 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
9cd6074a06
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Jar.java

+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/Jar.java View File

@@ -84,7 +84,7 @@ public class Jar extends Zip {


public void setJarfile(File jarFile) { public void setJarfile(File jarFile) {
log("DEPRECATED - The jarfile attribute is deprecated. Use file attribute instead."); log("DEPRECATED - The jarfile attribute is deprecated. Use file attribute instead.");
super.setFile(jarFile);
setFile(jarFile);
} }


public void addConfiguredManifest(Manifest newManifest) throws ManifestException { public void addConfiguredManifest(Manifest newManifest) throws ManifestException {


Loading…
Cancel
Save