You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2017/02/16 10:26:51 UTC

svn commit: r1783189 - /webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/util/InetAddressUtils.java

Author: coheigea
Date: Thu Feb 16 10:26:51 2017
New Revision: 1783189

URL: http://svn.apache.org/viewvc?rev=1783189&view=rev
Log:
Minor fix

Modified:
    webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/util/InetAddressUtils.java

Modified: webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/util/InetAddressUtils.java
URL: http://svn.apache.org/viewvc/webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/util/InetAddressUtils.java?rev=1783189&r1=1783188&r2=1783189&view=diff
==============================================================================
--- webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/util/InetAddressUtils.java (original)
+++ webservices/wss4j/trunk/ws-security-common/src/main/java/org/apache/wss4j/common/util/InetAddressUtils.java Thu Feb 16 10:26:51 2017
@@ -104,7 +104,7 @@ public final class InetAddressUtils {
                 colonCount++;
             }
         }
-        return  colonCount <= MAX_COLON_COUNT && IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches();
+        return colonCount <= MAX_COLON_COUNT && IPV6_HEX_COMPRESSED_PATTERN.matcher(input).matches();
     }
 
     /**