You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ha...@apache.org on 2013/02/20 04:40:42 UTC

svn commit: r1447991 - in /camel/branches/camel-2.10.x: camel-core/src/main/java/org/apache/camel/management/ platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/

Author: hadrian
Date: Wed Feb 20 03:40:41 2013
New Revision: 1447991

URL: http://svn.apache.org/r1447991
Log:
Checkstyle fixes preparing the 2.10.4 release

Modified:
    camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/management/MBeanInfoAssembler.java
    camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteResume.java
    camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStart.java
    camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStop.java
    camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteSuspend.java

Modified: camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/management/MBeanInfoAssembler.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/management/MBeanInfoAssembler.java?rev=1447991&r1=1447990&r2=1447991&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/management/MBeanInfoAssembler.java (original)
+++ camel/branches/camel-2.10.x/camel-core/src/main/java/org/apache/camel/management/MBeanInfoAssembler.java Wed Feb 20 03:40:41 2013
@@ -17,8 +17,8 @@
 package org.apache.camel.management;
 
 import java.lang.reflect.Method;
-import java.util.HashMap;
 import java.lang.reflect.Proxy;
+import java.util.HashMap;
 import java.util.LinkedHashSet;
 import java.util.Map;
 import java.util.Set;

Modified: camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteResume.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteResume.java?rev=1447991&r1=1447990&r2=1447991&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteResume.java (original)
+++ camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteResume.java Wed Feb 20 03:40:41 2013
@@ -26,10 +26,9 @@ import org.apache.felix.gogo.commands.Co
 @Command(scope = "camel", name = "route-resume", description = "Resume a Camel route or a group of routes.")
 public class RouteResume extends AbstractRouteCommand {
 
-	@Override
-	public void executeOnRoute(CamelContext camelContext, Route camelRoute)
-			throws Exception {
-		camelContext.resumeRoute(camelRoute.getId());
-	}
+    @Override
+    public void executeOnRoute(CamelContext camelContext, Route camelRoute) throws Exception {
+        camelContext.resumeRoute(camelRoute.getId());
+    }
 
 }

Modified: camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStart.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStart.java?rev=1447991&r1=1447990&r2=1447991&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStart.java (original)
+++ camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStart.java Wed Feb 20 03:40:41 2013
@@ -26,9 +26,9 @@ import org.apache.felix.gogo.commands.Co
 @Command(scope = "camel", name = "route-start", description = "Start a Camel route or a group of routes")
 public class RouteStart extends AbstractRouteCommand {
 
-	@Override
-	public void executeOnRoute(CamelContext camelContext, Route camelRoute) throws Exception {
-		camelContext.startRoute(camelRoute.getId());
-	}
+    @Override
+    public void executeOnRoute(CamelContext camelContext, Route camelRoute) throws Exception {
+        camelContext.startRoute(camelRoute.getId());
+    }
 
 }

Modified: camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStop.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStop.java?rev=1447991&r1=1447990&r2=1447991&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStop.java (original)
+++ camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteStop.java Wed Feb 20 03:40:41 2013
@@ -26,9 +26,9 @@ import org.apache.felix.gogo.commands.Co
 @Command(scope = "camel", name = " route-stop", description = "Stop a Camel route or a group of routes.")
 public class RouteStop extends AbstractRouteCommand {
 
-	@Override
-	public void executeOnRoute(CamelContext camelContext, Route camelRoute) throws Exception {
-    	camelContext.stopRoute(camelRoute.getId());
-	}
+    @Override
+    public void executeOnRoute(CamelContext camelContext, Route camelRoute) throws Exception {
+        camelContext.stopRoute(camelRoute.getId());
+    }
 
 }

Modified: camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteSuspend.java
URL: http://svn.apache.org/viewvc/camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteSuspend.java?rev=1447991&r1=1447990&r2=1447991&view=diff
==============================================================================
--- camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteSuspend.java (original)
+++ camel/branches/camel-2.10.x/platforms/karaf/commands/src/main/java/org/apache/camel/karaf/commands/RouteSuspend.java Wed Feb 20 03:40:41 2013
@@ -26,9 +26,9 @@ import org.apache.felix.gogo.commands.Co
 @Command(scope = "camel", name = " route-suspend", description = "Suspend a Camel route or a group of routes.")
 public class RouteSuspend extends AbstractRouteCommand {
 
-	@Override
-	public void executeOnRoute(CamelContext camelContext, Route camelRoute) throws Exception {
-		camelContext.suspendRoute(camelRoute.getId());
-	}
+    @Override
+    public void executeOnRoute(CamelContext camelContext, Route camelRoute) throws Exception {
+        camelContext.suspendRoute(camelRoute.getId());
+    }
 
 }