[hornetq-commits] JBoss hornetq SVN: r9622 - in trunk/src/main/org/hornetq: jms/server/embedded and 1 other directory.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Sep 1 09:54:23 EDT 2010


Author: bill.burke at jboss.com
Date: 2010-09-01 09:54:23 -0400 (Wed, 01 Sep 2010)
New Revision: 9622

Modified:
   trunk/src/main/org/hornetq/integration/spring/SpringJmsBootstrap.java
   trunk/src/main/org/hornetq/jms/server/embedded/EmbeddedJMS.java
Log:
remove println



Modified: trunk/src/main/org/hornetq/integration/spring/SpringJmsBootstrap.java
===================================================================
--- trunk/src/main/org/hornetq/integration/spring/SpringJmsBootstrap.java	2010-09-01 07:22:34 UTC (rev 9621)
+++ trunk/src/main/org/hornetq/integration/spring/SpringJmsBootstrap.java	2010-09-01 13:54:23 UTC (rev 9622)
@@ -14,7 +14,6 @@
 {
    public void setBeanFactory(BeanFactory beanFactory) throws BeansException
    {
-      System.out.println("SpringJmsBootstrap setBeanFactory...");
-      registry = new SpringBindingRegistry((ConfigurableBeanFactory)beanFactory);
+      registry = new SpringBindingRegistry((ConfigurableBeanFactory) beanFactory);
    }
 }

Modified: trunk/src/main/org/hornetq/jms/server/embedded/EmbeddedJMS.java
===================================================================
--- trunk/src/main/org/hornetq/jms/server/embedded/EmbeddedJMS.java	2010-09-01 07:22:34 UTC (rev 9621)
+++ trunk/src/main/org/hornetq/jms/server/embedded/EmbeddedJMS.java	2010-09-01 13:54:23 UTC (rev 9622)
@@ -5,13 +5,10 @@
 import org.hornetq.jms.server.impl.JMSServerManagerImpl;
 import org.hornetq.spi.BindingRegistry;
 
-import java.util.ArrayList;
-import java.util.List;
-
 /**
  * Simple bootstrap class that parses hornetq config files (server and jms and security) and starts
  * a HornetQServer instance and populates it with configured JMS endpoints.
- *
+ * <p/>
  * JMS Endpoints are registered with a simple MapBindingRegistry.  If you want to use a different registry
  * you must set the registry property of this clas
  *
@@ -57,7 +54,6 @@
 
    public void start() throws Exception
    {
-      System.out.println("EmbeddedJMS starting...");
       super.initStart();
       if (jmsConfigResourcePath == null) serverManager = new JMSServerManagerImpl(hornetQServer);
       else serverManager = new JMSServerManagerImpl(hornetQServer, jmsConfigResourcePath);



More information about the hornetq-commits mailing list