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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Aug 30 20:18:47 EDT 2006


Author: ovidiu.feodorov at jboss.com
Date: 2006-08-30 20:18:46 -0400 (Wed, 30 Aug 2006)
New Revision: 1241

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

Modified: branches/Branch_1_0/src/main/org/jboss/jms/server/plugin/JDBCChannelMapper.java
===================================================================
--- branches/Branch_1_0/src/main/org/jboss/jms/server/plugin/JDBCChannelMapper.java	2006-08-30 22:36:03 UTC (rev 1240)
+++ branches/Branch_1_0/src/main/org/jboss/jms/server/plugin/JDBCChannelMapper.java	2006-08-31 00:18:46 UTC (rev 1241)
@@ -272,11 +272,11 @@
       Long l = getIdForDestination(isQueue, destName);
       if (l == null)
       {
-         //Not in db - insert a new mapping row
+         // Not in db - insert a new mapping row
          id = this.getNextId();
          
-         insertMappingRow(id, isQueue ? TYPE_QUEUE : TYPE_TOPIC,
-                          destName, null, null, null, null);
+         insertMappingRow(id, isQueue ? TYPE_QUEUE : TYPE_TOPIC, destName, null, null, null, null);
+
       }
       else
       {
@@ -286,7 +286,7 @@
       // TODO I am using LocalQueues for the time being, switch to distributed Queues
       if (isQueue)
       {
-         //We allocate an executor for the queue from the rotating pool
+         // We allocate an executor for the queue from the rotating pool
          QueuedExecutor executor = (QueuedExecutor)queuedExecutorPool.get(destName);
          
          cd = new Queue(id, ms, pm, mm, true, fullSize, pageSize, downCacheSize, executor);




More information about the jboss-cvs-commits mailing list