You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2008/05/28 14:26:55 UTC

svn commit: r660919 - /servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java

Author: gnodet
Date: Wed May 28 05:26:55 2008
New Revision: 660919

URL: http://svn.apache.org/viewvc?rev=660919&view=rev
Log:
Fix pmd violation

Modified:
    servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java

Modified: servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java?rev=660919&r1=660918&r2=660919&view=diff
==============================================================================
--- servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java (original)
+++ servicemix/smx3/branches/servicemix-3.2/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java Wed May 28 05:26:55 2008
@@ -296,7 +296,7 @@
         return (s1 == null) ? s2 == null : s1.equals(s2);
     }
 
-    private static int hash(String... strings) {
+    private static int hash(String[] strings) {
         int result = 0;
         for (String s : strings) {
             result ^= hash(s);