Browse Source

bugzilla 32927: description of javadoc's tag should be optional

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@470578 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Reilly 18 years ago
parent
commit
0927b4407b
4 changed files with 10 additions and 1 deletions
  1. +1
    -0
      CONTRIBUTORS
  2. +3
    -0
      WHATSNEW
  3. +4
    -0
      contributors.xml
  4. +2
    -1
      src/main/org/apache/tools/ant/taskdefs/Javadoc.java

+ 1
- 0
CONTRIBUTORS View File

@@ -198,6 +198,7 @@ Paul King
Paulo Gaspar
Peter B. West
Peter Donald
Peter Doornbosch
Peter Hulst
Peter Reilly
Phillip Wells


+ 3
- 0
WHATSNEW View File

@@ -48,6 +48,9 @@ Other changes:
* <javadoc> useexternalfile now applies to all command line arguments
of javadoc. Bugzilla report 40852.

* javadoc/tag@description is now set to the name if description is
not specified. Bugzill report 32927.


Changes from Ant 1.7.0Beta2 to Ant 1.7.0Beta3
=============================================


+ 4
- 0
contributors.xml View File

@@ -791,6 +791,10 @@
<first>Peter</first>
<last>Donald</last>
</name>
<name>
<first>Peter</first>
<last>Doornbosch</last>
</name>
<name>
<first>Peter</first>
<last>Hulst</last>


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

@@ -1387,7 +1387,8 @@ public class Javadoc extends Task {
return name + ":" + (enabled ? "" : "X")
+ scope + ":" + getDescription();
} else {
return name;
return name + ":" + (enabled ? "" : "X")
+ scope + ":" + name;
}
}
}


Loading…
Cancel
Save