donaldp 02/02/18 05:35:20
Modified: src/main/org/apache/tools/ant/taskdefs Javadoc.java
Log:
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 ? ;)
Revision Changes Path
1.74 +1 -1
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Javadoc.java
Index: Javadoc.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Javadoc.java,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- Javadoc.java 26 Jan 2002 19:21:02 -0000 1.73
+++ Javadoc.java 18 Feb 2002 13:35:20 -0000 1.74
@@ -789,7 +789,7 @@
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();
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>