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);


Reply via email to