[jboss-cvs] JBossAS SVN: r62187 - branches/JBoss_4_0_3_SP1_CP/messaging/src/main/org/jboss/mq/il/uil2.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Apr 9 11:03:37 EDT 2007


Author: darran.lofthouse at jboss.com
Date: 2007-04-09 11:03:37 -0400 (Mon, 09 Apr 2007)
New Revision: 62187

Modified:
   branches/JBoss_4_0_3_SP1_CP/messaging/src/main/org/jboss/mq/il/uil2/UILServerILService.java
Log:
ASPATCH-176, fix NPE introduced by this patch.

Modified: branches/JBoss_4_0_3_SP1_CP/messaging/src/main/org/jboss/mq/il/uil2/UILServerILService.java
===================================================================
--- branches/JBoss_4_0_3_SP1_CP/messaging/src/main/org/jboss/mq/il/uil2/UILServerILService.java	2007-04-09 15:01:31 UTC (rev 62186)
+++ branches/JBoss_4_0_3_SP1_CP/messaging/src/main/org/jboss/mq/il/uil2/UILServerILService.java	2007-04-09 15:03:37 UTC (rev 62187)
@@ -56,7 +56,6 @@
 {
    final static int SO_TIMEOUT = 5000;
 
-   private Invoker server;
    /** The security domain name to use with SSL aware socket factories.
     */
    private String securityDomain;
@@ -169,7 +168,7 @@
             socketMgr.setBufferSize(bufferSize);
             socketMgr.setChunkSize(chunkSize);
             Invoker s = getJMSServer();
-            socketMgr.start(server.getThreadGroup());
+            socketMgr.start(s.getThreadGroup());
          }
          catch (IOException e)
          {




More information about the jboss-cvs-commits mailing list