[Jboss-cvs] JBoss Messaging SVN: r1232 - branches/Branch_1_0/src/main/org/jboss/jms/server/destination

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Aug 24 22:55:32 EDT 2006


Author: ovidiu.feodorov at jboss.com
Date: 2006-08-24 22:55:31 -0400 (Thu, 24 Aug 2006)
New Revision: 1232

Modified:
   branches/Branch_1_0/src/main/org/jboss/jms/server/destination/DestinationServiceSupport.java
Log:
minor reformatting

Modified: branches/Branch_1_0/src/main/org/jboss/jms/server/destination/DestinationServiceSupport.java
===================================================================
--- branches/Branch_1_0/src/main/org/jboss/jms/server/destination/DestinationServiceSupport.java	2006-08-24 20:40:52 UTC (rev 1231)
+++ branches/Branch_1_0/src/main/org/jboss/jms/server/destination/DestinationServiceSupport.java	2006-08-25 02:55:31 UTC (rev 1232)
@@ -118,21 +118,21 @@
          sm = serverPeer.getSecurityManager();
          cm = serverPeer.getChannelMapperDelegate();
          
-         //Core destination MUST be deployed before destination is registered in JNDI
-         //otherwise the user could get a reference to the destination and use it
-         //while it is still being loaded
-         
+         // Core destination MUST be deployed before destination is registered in JNDI otherwise the
+         // user could get a reference to the destination and use it while it is still being loaded
+
          cm.deployCoreDestination(isQueue(), name, serverPeer.getMessageStoreDelegate(),
-               serverPeer.getPersistenceManagerDelegate(),
-               serverPeer.getMemoryManager(),
-               fullSize, pageSize, downCacheSize);
+                                  serverPeer.getPersistenceManagerDelegate(),
+                                  serverPeer.getMemoryManager(),
+                                  fullSize, pageSize, downCacheSize);
    
          jndiName = dm.registerDestination(isQueue(), name, jndiName, securityConfig);
-        
+
          log.debug(this + " security configuration: " + (securityConfig == null ?
-            "null" : "\n" + XMLUtil.elementToString(securityConfig)));
+                   "null" : "\n" + XMLUtil.elementToString(securityConfig)));
 
-         log.info(this + " started, fullSize=" + fullSize + ", pageSize=" + pageSize + ", downCacheSize=" + downCacheSize);
+         log.info(this + " started, fullSize=" + fullSize + ", pageSize=" + pageSize +
+                  ", downCacheSize=" + downCacheSize);
       }
       catch (Throwable t)
       {




More information about the jboss-cvs-commits mailing list