You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2011/05/20 16:33:17 UTC

svn commit: r1125416 - /commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java

Author: ggregory
Date: Fri May 20 14:33:17 2011
New Revision: 1125416

URL: http://svn.apache.org/viewvc?rev=1125416&view=rev
Log:
Format.

Modified:
    commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java

Modified: commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java?rev=1125416&r1=1125415&r2=1125416&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java (original)
+++ commons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java Fri May 20 14:33:17 2011
@@ -6366,7 +6366,7 @@ public class StringUtils {
      * @since 3.0
      */
     public static String normalizeSpace(String str) {
-        if(str == null) {
+        if (str == null) {
             return null;
         }
         return WHITESPACE_BLOCK.matcher(trim(str)).replaceAll(" ");