You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ba...@apache.org on 2009/02/19 06:07:04 UTC

svn commit: r745727 - /commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/HelpFormatter.java

Author: bayard
Date: Thu Feb 19 05:07:04 2009
New Revision: 745727

URL: http://svn.apache.org/viewvc?rev=745727&view=rev
Log:
Always hard to remember to drop the braces in CLI

Modified:
    commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/HelpFormatter.java

Modified: commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/HelpFormatter.java
URL: http://svn.apache.org/viewvc/commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/HelpFormatter.java?rev=745727&r1=745726&r2=745727&view=diff
==============================================================================
--- commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/HelpFormatter.java (original)
+++ commons/proper/cli/branches/cli-1.x/src/java/org/apache/commons/cli/HelpFormatter.java Thu Feb 19 05:07:04 2009
@@ -831,7 +831,8 @@
                 return sb;
             }
             
-            if ( (text.length() > width) && (pos == nextLineTabStop - 1) ) {
+            if ( (text.length() > width) && (pos == nextLineTabStop - 1) ) 
+            {
                 pos = width;
             }