(chore) re-arranging some whitespace

Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/0b6a285b
Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/0b6a285b
Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/0b6a285b

Branch: refs/heads/master
Commit: 0b6a285bb3884128f833f368bd9ff3538edfc916
Parents: 3b11cb6
Author: Rob Tompkins <chtom...@apache.org>
Authored: Tue May 2 20:55:22 2017 -0400
Committer: Rob Tompkins <chtom...@apache.org>
Committed: Tue May 2 20:55:22 2017 -0400

----------------------------------------------------------------------
 src/main/java/org/apache/commons/text/WordUtils.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-text/blob/0b6a285b/src/main/java/org/apache/commons/text/WordUtils.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/text/WordUtils.java 
b/src/main/java/org/apache/commons/text/WordUtils.java
index 69747dc..0cee2f6 100644
--- a/src/main/java/org/apache/commons/text/WordUtils.java
+++ b/src/main/java/org/apache/commons/text/WordUtils.java
@@ -174,9 +174,9 @@ public class WordUtils {
      * @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, " ");
     }
 
@@ -272,10 +272,10 @@ public class WordUtils {
      * @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;
         }

Reply via email to