From a6e3c87111d5424020495cdd49329ab92ec301cc Mon Sep 17 00:00:00 2001 From: Peter Donald Date: Mon, 18 Feb 2002 13:35:20 +0000 Subject: [PATCH] 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 --- src/main/org/apache/tools/ant/taskdefs/Javadoc.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/org/apache/tools/ant/taskdefs/Javadoc.java b/src/main/org/apache/tools/ant/taskdefs/Javadoc.java index 839b25117..789344ec0 100644 --- a/src/main/org/apache/tools/ant/taskdefs/Javadoc.java +++ b/src/main/org/apache/tools/ant/taskdefs/Javadoc.java @@ -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();