Browse Source

Remove unused fields and methods

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270893 13f79535-47bb-0310-9956-ffa450edef68
master
Stephane Bailliez 24 years ago
parent
commit
144c9d1920
1 changed files with 0 additions and 8 deletions
  1. +0
    -8
      src/main/org/apache/tools/ant/taskdefs/Javadoc.java

+ 0
- 8
src/main/org/apache/tools/ant/taskdefs/Javadoc.java View File

@@ -242,19 +242,12 @@ public class Javadoc extends Task {
} }
} }


private void add11ArgIf(boolean b, String arg) {
if (javadoc1 && b) {
cmd.createArgument().setValue(arg);
}
}

private void add12ArgIf(boolean b, String arg) { private void add12ArgIf(boolean b, String arg) {
if (!javadoc1 && b) { if (!javadoc1 && b) {
cmd.createArgument().setValue(arg); cmd.createArgument().setValue(arg);
} }
} }


private boolean foundJavaFile = false;
private boolean failOnError = false; private boolean failOnError = false;
private Path sourcePath = null; private Path sourcePath = null;
private File destDir = null; private File destDir = null;
@@ -267,7 +260,6 @@ public class Javadoc extends Task {
private Path classpath = null; private Path classpath = null;
private Path bootclasspath = null; private Path bootclasspath = null;
private String group = null; private String group = null;
private Vector compileList = new Vector(10);
private String packageList = null; private String packageList = null;
private Vector links = new Vector(2); private Vector links = new Vector(2);
private Vector groups = new Vector(2); private Vector groups = new Vector(2);


Loading…
Cancel
Save