diff --git a/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginXdocGenerator.java b/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginXdocGenerator.java index 17ce249..e619acc 100644 --- a/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginXdocGenerator.java +++ b/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginXdocGenerator.java @@ -135,7 +135,7 @@ public class PluginXdocGenerator private void writeGoalAttributes( MojoDescriptor mojoDescriptor, XMLWriter w ) { w.startElement( "p" ); - w.writeMarkup( "Mojo Attributes:" ); + w.writeMarkup( "Mojo Attributes:" ); w.endElement(); //p w.startElement( "ul" ); @@ -285,7 +285,7 @@ public class PluginXdocGenerator Parameter parameter = (Parameter) parameters.next(); w.startElement( "p" ); - w.writeMarkup( "" + parameter.getName() + "" ); + w.writeMarkup( "" + parameter.getName() + "" ); w.endElement(); //p String description = parameter.getDescription(); @@ -348,7 +348,7 @@ public class PluginXdocGenerator if ( StringUtils.isNotEmpty( value ) ) { w.startElement( "li" ); - w.writeMarkup( "" + param + ": " ); + w.writeMarkup( "" + param + ": " ); w.writeText( value ); w.writeMarkup( "" ); w.endElement(); //li @@ -398,7 +398,7 @@ public class PluginXdocGenerator w.startElement( "tr" ); w.startElement( "td" ); - w.writeMarkup( "" + parameter.getName() + "" ); + w.writeMarkup( "" + parameter.getName() + "" ); w.endElement();//td w.startElement( "td" ); int index = parameter.getType().lastIndexOf( "." ); @@ -433,7 +433,7 @@ public class PluginXdocGenerator } if ( StringUtils.isNotEmpty( parameter.getDeprecated() ) ) { - description = "Deprecated. " + description; + description = "Deprecated. " + description; } w.writeMarkup( description );