Hi, Peter Reilly wrote : > > I have a fix for: > http://issues.apache.org/bugzilla/show_bug.cgi?id=40900 > The bug means that javadoc#setdocletpath path is ignored. > (which is pretty serious) > Index: src/main/org/apache/tools/ant/taskdefs/Javadoc.java > =================================================================== > --- src/main/org/apache/tools/ant/taskdefs/Javadoc.java (revision 471681) > +++ src/main/org/apache/tools/ant/taskdefs/Javadoc.java (working copy) > @@ -732,7 +732,9 @@ > * @return a new DocletInfo instance to be configured. > */ > public DocletInfo createDoclet() { > - doclet = new DocletInfo(); > + if (doclet == null) { > + doclet = new DocletInfo(); > + } > return doclet; > } > but do not have write access to svn at the moment. > Should rc1 be respun for this? > Peter > The system of voting on builds introduces a lapse of time - between the build and the actual release - where you are tempted to improve the build again. I am not fond of that :(
There will always be bugs. Maybe this one can wait until 1.7.0 ? Regards, Antoine --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]