Browse Source

Removed ; characters in innapropriate places to get rid of jikes warning:

Warning: An EmptyDeclaration is a deprecated feature that should not be used - ";" ignored.


git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@269699 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 24 years ago
parent
commit
dccafad30a
3 changed files with 3 additions and 4 deletions
  1. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/Exec.java
  2. +1
    -1
      src/main/org/apache/tools/ant/taskdefs/optional/depend/Depend.java
  3. +1
    -2
      src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java

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

@@ -192,7 +192,7 @@ public class Exec extends Task {
} else {
fos.println(line);
}
};
}

protected void logFlush() {
if (fos != null) fos.close();


+ 1
- 1
src/main/org/apache/tools/ant/taskdefs/optional/depend/Depend.java View File

@@ -83,7 +83,7 @@ public class Depend extends MatchingTask {
/** The Java class name of this class */
public String className;
};
}

/**
* The path where source files exist


+ 1
- 2
src/main/org/apache/tools/ant/taskdefs/optional/ejb/EjbJar.java View File

@@ -172,8 +172,7 @@ public class EjbJar extends MatchingTask {
* The Manifest file
*/
public File manifest;
};

}

public static class NamingScheme extends EnumeratedAttribute {
static public final String EJB_NAME = "ejb-name";


Loading…
Cancel
Save