You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by lh...@apache.org on 2010/10/12 21:32:37 UTC

svn commit: r1021893 - /servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java

Author: lhein
Date: Tue Oct 12 19:32:36 2010
New Revision: 1021893

URL: http://svn.apache.org/viewvc?rev=1021893&view=rev
Log:
fixed some checkstyle errors

Modified:
    servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java

Modified: servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java
URL: http://svn.apache.org/viewvc/servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java?rev=1021893&r1=1021892&r2=1021893&view=diff
==============================================================================
--- servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java (original)
+++ servicemix/smx3/trunk/core/servicemix-core/src/main/java/org/apache/servicemix/jbi/container/JBIContainer.java Tue Oct 12 19:32:36 2010
@@ -820,7 +820,9 @@ public class JBIContainer extends BaseLi
      */
     public synchronized void setMBeanServer(MBeanServer mbs) {
         this.mbeanServer = mbs;
-        if (this.mbeanServer != null && this.executorFactory != null && this.executorFactory instanceof org.apache.servicemix.executors.impl.ExecutorFactoryImpl) {
+        if (this.mbeanServer != null
+                && this.executorFactory != null
+                && this.executorFactory instanceof org.apache.servicemix.executors.impl.ExecutorFactoryImpl) {
             ((org.apache.servicemix.executors.impl.ExecutorFactoryImpl) this.executorFactory).setMbeanServer(this.mbeanServer);
         }
     }