[Jboss-cvs] JBossAS SVN: r55417 - branches/Branch_4_0/testsuite/src/main/org/jboss/test/security/service

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Aug 8 15:55:28 EDT 2006


Author: anil.saldhana at jboss.com
Date: 2006-08-08 15:55:27 -0400 (Tue, 08 Aug 2006)
New Revision: 55417

Modified:
   branches/Branch_4_0/testsuite/src/main/org/jboss/test/security/service/HttpsClient.java
Log:
JBAS-3449: Minor correction

Modified: branches/Branch_4_0/testsuite/src/main/org/jboss/test/security/service/HttpsClient.java
===================================================================
--- branches/Branch_4_0/testsuite/src/main/org/jboss/test/security/service/HttpsClient.java	2006-08-08 19:53:01 UTC (rev 55416)
+++ branches/Branch_4_0/testsuite/src/main/org/jboss/test/security/service/HttpsClient.java	2006-08-08 19:55:27 UTC (rev 55417)
@@ -141,7 +141,7 @@
          String handlers = System.getProperty("java.protocol.handler.pkgs");
          if( handlers == null || handlers.indexOf(protocolHandler) < 0 )
          {
-            handlers += "|protocolHandler";
+            handlers += "|"+protocolHandler;
             log.debug("Adding https handler to java.protocol.handler.pkgs");
             System.setProperty("java.protocol.handler.pkgs", handlers);
             addedHttpsHandler = true;




More information about the jboss-cvs-commits mailing list