You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2008/08/08 14:31:32 UTC

svn commit: r683951 - /maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java

Author: vsiveton
Date: Fri Aug  8 05:31:31 2008
New Revision: 683951

URL: http://svn.apache.org/viewvc?rev=683951&view=rev
Log:
o revert part of r683705 due to comments on dev@
o change the modifier to private for generated toLines()

Modified:
    maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java

Modified: maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java?rev=683951&r1=683950&r2=683951&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-api/src/main/java/org/apache/maven/tools/plugin/generator/PluginHelpGenerator.java Fri Aug  8 05:31:31 2008
@@ -572,7 +572,7 @@
         writer.write( "     * @return The sequence of display lines, never <code>null</code>." + LS );
         writer.write( "     * @throws NegativeArraySizeException if <code>indent < 0</code>" + LS );
         writer.write( "     */" + LS );
-        writer.write( "    public static List toLines( String text, int indent, int indentSize, int lineLength )" + LS );
+        writer.write( "    private static List toLines( String text, int indent, int indentSize, int lineLength )" + LS );
         writer.write( "    {" + LS );
         writer.write( "        List lines = new ArrayList();" + LS );
         writer.write( LS );