Browse Source

Make doclets behave the same way as other ClassPath loaded things in the presence of gump ... or at least thats what I think this patch does ? ;)

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

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

@@ -789,7 +789,7 @@ public class Javadoc extends Task {
toExecute.createArgument().setValue(doclet.getName());
if (doclet.getPath() != null) {
toExecute.createArgument().setValue("-docletpath");
toExecute.createArgument().setPath(doclet.getPath());
toExecute.createArgument().setPath(doclet.getPath().concatSystemClasspath("ignore"));
}
for (Enumeration e = doclet.getParams(); e.hasMoreElements();) {
DocletParam param = (DocletParam)e.nextElement();


Loading…
Cancel
Save