[jboss-remoting-commits] JBoss Remoting SVN: r5725 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/ssl/emptystore.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Wed Feb 17 19:49:20 EST 2010


Author: ron.sigal at jboss.com
Date: 2010-02-17 19:49:20 -0500 (Wed, 17 Feb 2010)
New Revision: 5725

Modified:
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/ssl/emptystore/EmptyStoreTestCase.java
Log:
JBREM-1172: Changed StringBuilder to StringBuffer for jdk 1.4.

Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/ssl/emptystore/EmptyStoreTestCase.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/ssl/emptystore/EmptyStoreTestCase.java	2010-02-18 00:48:06 UTC (rev 5724)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/ssl/emptystore/EmptyStoreTestCase.java	2010-02-18 00:49:20 UTC (rev 5725)
@@ -126,7 +126,7 @@
       
       // Create SSLSocketBuilder.
       HashMap config = new HashMap();
-      String none = new StringBuilder("NONE").toString();
+      String none = new StringBuffer("NONE").toString();
       config.put(SSLSocketBuilder.REMOTING_KEY_STORE_TYPE, "JKS");
       config.put(SSLSocketBuilder.REMOTING_KEY_STORE_FILE_PATH, none);
 //      config.put(SSLSocketBuilder.REMOTING_KEY_STORE_PASSWORD, "dummy");



More information about the jboss-remoting-commits mailing list