Author: gnodet
Date: Fri May 30 01:59:37 2008
New Revision: 661601
URL: http://svn.apache.org/viewvc?rev=661601&view=rev
Log:
Fix checkstyle issue
Modified:
servicemix/smx3/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java
Modified:
servicemix/smx3/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java
URL:
http://svn.apache.org/viewvc/servicemix/smx3/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java?rev=661601&r1=661600&r2=661601&view=diff
==============================================================================
---
servicemix/smx3/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java
(original)
+++
servicemix/smx3/trunk/deployables/bindingcomponents/servicemix-http/src/main/java/org/apache/servicemix/http/SslParameters.java
Fri May 30 01:59:37 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);