diff --git a/proposal/xdocs/src/org/apache/tools/ant/xdoclet/AntTagsHandler.java b/proposal/xdocs/src/org/apache/tools/ant/xdoclet/AntTagsHandler.java
index 1de8ae711..b38c0feb6 100644
--- a/proposal/xdocs/src/org/apache/tools/ant/xdoclet/AntTagsHandler.java
+++ b/proposal/xdocs/src/org/apache/tools/ant/xdoclet/AntTagsHandler.java
@@ -211,13 +211,13 @@ public class AntTagsHandler extends XDocletTagSupport {
}
/**
- * Provides the Ant category name as the Value of the category attribute,
- * @ant:task category="..."
. This attribute is mandatory.
+ * Provides the Ant category name as the Value of the category attribute,
+ * @ant:task category="..."
.
*/
public static final String getCategoryName(ClassDoc clazz) throws XDocletException {
String tagValue = getTagValue(clazz, "ant:task", "category", -1,
null, null, null, null,
- null, false, XDocletTagSupport.FOR_CLASS, true);
+ null, false, XDocletTagSupport.FOR_CLASS, false);
if (tagValue != null) {
tagValue = tagValue.toLowerCase();
}