o revert part of r683705 due to comments on dev@

o change the modifier to private for generated toLines()

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@683951 13f79535-47bb-0310-9956-ffa450edef68
master
Vincent Siveton 2008-08-08 12:31:31 +00:00
parent 6a27c2f25b
commit 2f241ee5e4
1 changed files with 1 additions and 1 deletions

View File

@ -572,7 +572,7 @@ public class PluginHelpGenerator
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 );