git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@470578 13f79535-47bb-0310-9956-ffa450edef68master
@@ -198,6 +198,7 @@ Paul King | |||||
Paulo Gaspar | Paulo Gaspar | ||||
Peter B. West | Peter B. West | ||||
Peter Donald | Peter Donald | ||||
Peter Doornbosch | |||||
Peter Hulst | Peter Hulst | ||||
Peter Reilly | Peter Reilly | ||||
Phillip Wells | Phillip Wells | ||||
@@ -48,6 +48,9 @@ Other changes: | |||||
* <javadoc> useexternalfile now applies to all command line arguments | * <javadoc> useexternalfile now applies to all command line arguments | ||||
of javadoc. Bugzilla report 40852. | 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 | Changes from Ant 1.7.0Beta2 to Ant 1.7.0Beta3 | ||||
============================================= | ============================================= | ||||
@@ -791,6 +791,10 @@ | |||||
<first>Peter</first> | <first>Peter</first> | ||||
<last>Donald</last> | <last>Donald</last> | ||||
</name> | </name> | ||||
<name> | |||||
<first>Peter</first> | |||||
<last>Doornbosch</last> | |||||
</name> | |||||
<name> | <name> | ||||
<first>Peter</first> | <first>Peter</first> | ||||
<last>Hulst</last> | <last>Hulst</last> | ||||
@@ -1387,7 +1387,8 @@ public class Javadoc extends Task { | |||||
return name + ":" + (enabled ? "" : "X") | return name + ":" + (enabled ? "" : "X") | ||||
+ scope + ":" + getDescription(); | + scope + ":" + getDescription(); | ||||
} else { | } else { | ||||
return name; | |||||
return name + ":" + (enabled ? "" : "X") | |||||
+ scope + ":" + name; | |||||
} | } | ||||
} | } | ||||
} | } | ||||