Skip to content

Commit

Permalink
(chore) re-arranging some whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
chtompki committed May 3, 2017
1 parent 3b11cb6 commit 0b6a285
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/main/java/org/apache/commons/text/WordUtils.java
Expand Up @@ -174,9 +174,9 @@ public static String wrap(final String str, final int wrapLength) {
* @return a line with newlines inserted, <code>null</code> if null input
*/
public static String wrap(final String str,
final int wrapLength,
final String newLineStr,
final boolean wrapLongWords) {
final int wrapLength,
final String newLineStr,
final boolean wrapLongWords) {
return wrap(str, wrapLength, newLineStr, wrapLongWords, " ");
}

Expand Down Expand Up @@ -272,10 +272,10 @@ public static String wrap(final String str,
* @return a line with newlines inserted, <code>null</code> if null input
*/
public static String wrap(final String str,
int wrapLength,
String newLineStr,
final boolean wrapLongWords,
String wrapOn) {
int wrapLength,
String newLineStr,
final boolean wrapLongWords,
String wrapOn) {
if (str == null) {
return null;
}
Expand Down

0 comments on commit 0b6a285

Please sign in to comment.