[jboss-svn-commits] JBL Code SVN: r23346 - labs/jbossesb/workspace/skeagh/runtime/src/main/java/org/jboss/esb/dispatch.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Tue Oct 7 08:44:01 EDT 2008


Author: beve
Date: 2008-10-07 08:44:01 -0400 (Tue, 07 Oct 2008)
New Revision: 23346

Modified:
   labs/jbossesb/workspace/skeagh/runtime/src/main/java/org/jboss/esb/dispatch/AbstractDispatcher.java
Log:
checkstyle cleanup.


Modified: labs/jbossesb/workspace/skeagh/runtime/src/main/java/org/jboss/esb/dispatch/AbstractDispatcher.java
===================================================================
--- labs/jbossesb/workspace/skeagh/runtime/src/main/java/org/jboss/esb/dispatch/AbstractDispatcher.java	2008-10-07 12:15:39 UTC (rev 23345)
+++ labs/jbossesb/workspace/skeagh/runtime/src/main/java/org/jboss/esb/dispatch/AbstractDispatcher.java	2008-10-07 12:44:01 UTC (rev 23346)
@@ -246,7 +246,7 @@
 
                     logger.debug("ServiceException in service '" + serviceName + "'.  Routing fault message to '" + faultTo + "'.", e);
                     serviceInvoker.send(new Message(busMessage), faultTo);
-                    // If the routing of the fault message to the faultTo address fails, it will be routed to the 
+                    // If the routing of the fault message to the faultTo address fails, it will be routed to the
                     // Dead Letter Service and retried later.
                 }
                 else
@@ -269,8 +269,6 @@
      * Apply the outbound routers to the message.
      *
      * @param message The message.
-     * @throws org.jboss.esb.routing.RoutingException
-     *          Error routing message.
      */
     protected final void applyOutboundRouters(final Message message)
     {
@@ -337,7 +335,7 @@
                     {
                         Message outMessage = message;
 
-                        if(cloneOutboundMessages)
+                        if (cloneOutboundMessages)
                         {
                             outMessage = cloneMessage(message);
                         }
@@ -498,7 +496,7 @@
         // the message before applying each router.
         for (OutboundRouterConfig outboundRouter : outboundRouters)
         {
-            if(outboundRouter.getProcessors() != null && !outboundRouter.getProcessors().isEmpty())
+            if (outboundRouter.getProcessors() != null && !outboundRouter.getProcessors().isEmpty())
             {
                 this.cloneOutboundMessages = true;
                 break;




More information about the jboss-svn-commits mailing list