Skip to content

Commit a3e7162

Browse files
committed
Always hard to remember to drop the braces in CLI
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/cli/branches/cli-1.x@745727 13f79535-47bb-0310-9956-ffa450edef68
1 parent d1121d3 commit a3e7162

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/java/org/apache/commons/cli/HelpFormatter.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -831,7 +831,8 @@ protected StringBuffer renderWrappedText(StringBuffer sb, int width,
831831
return sb;
832832
}
833833

834-
if ( (text.length() > width) && (pos == nextLineTabStop - 1) ) {
834+
if ( (text.length() > width) && (pos == nextLineTabStop - 1) )
835+
{
835836
pos = width;
836837
}
837838

0 commit comments

Comments
 (0)