From 36c8b23cc3eaf0f94c7cb4f7e1fa2c7e3b59f021 Mon Sep 17 00:00:00 2001 From: Vincent Siveton Date: Sat, 9 Feb 2008 14:17:38 +0000 Subject: [PATCH] MPLUGIN-69: Be consistent about physical/logical formatting tags Submitted by: Benjamin Bentmann Reviewed by: Vincent Siveton o applied git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@620124 13f79535-47bb-0310-9956-ffa450edef68 --- .../tools/plugin/generator/PluginXdocGenerator.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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 );