This is an automated email from the ASF dual-hosted git repository.

acosentino pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 8512692  Fixed CS for camel-restlet
8512692 is described below

commit 8512692b653e67a841c0c81cb349a48f533905c7
Author: Andrea Cosentino <anco...@gmail.com>
AuthorDate: Thu Jul 11 10:19:28 2019 +0200

    Fixed CS for camel-restlet
---
 .../org/apache/camel/component/restlet/RestRestletRouterIdTest.java | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git 
a/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestRestletRouterIdTest.java
 
b/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestRestletRouterIdTest.java
index ad2d2af..e4fec0e 100644
--- 
a/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestRestletRouterIdTest.java
+++ 
b/components/camel-restlet/src/test/java/org/apache/camel/component/restlet/RestRestletRouterIdTest.java
@@ -31,7 +31,7 @@ import org.junit.Test;
 public class RestRestletRouterIdTest extends CamelTestSupport {
 
     private static final Processor SET_ROUTE_ID_AS_BODY =
-            exchange -> exchange.getIn().setBody(exchange.getFromRouteId());
+    exchange -> exchange.getIn().setBody(exchange.getFromRouteId());
 
     @Override
     protected JndiRegistry createRegistry() throws Exception {
@@ -72,9 +72,7 @@ public class RestRestletRouterIdTest extends CamelTestSupport 
{
                         .to("direct:setId")
                         .endRest()
                 .to("direct:setId2");
-            }
-
-            ;
+            };
         };
     }
 

Reply via email to