You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2017/12/15 09:37:25 UTC

[camel] 03/03: CAMEL-12080: removing trailing slashs

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

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

commit fd42ef2450c2d2baae6ccdc85db0ca2d82b13355
Author: Ricardo Zanini <ri...@gmail.com>
AuthorDate: Fri Dec 15 07:21:54 2017 -0200

    CAMEL-12080: removing trailing slashs
---
 .../bindy/csv/BindyMarshalEndWithLineBreakTest.java        | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyMarshalEndWithLineBreakTest.java b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyMarshalEndWithLineBreakTest.java
index a404845..f8959e8 100644
--- a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyMarshalEndWithLineBreakTest.java
+++ b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyMarshalEndWithLineBreakTest.java
@@ -72,14 +72,14 @@ public class BindyMarshalEndWithLineBreakTest extends CamelTestSupport {
         return new RouteBuilder() {
             @Override
             public void configure() throws Exception {
-                from("direct:withoutlb") //
-                    .marshal().bindy(BindyType.Csv, MyCsvRecord2.class) //
-                    .to("log:after.unmarshal") //
-                    .to("mock:result"); //
+                from("direct:withoutlb")
+                    .marshal().bindy(BindyType.Csv, MyCsvRecord2.class)
+                    .to("log:after.unmarshal")
+                    .to("mock:result");
 
-                from("direct:withlb") //
-                    .marshal().bindy(BindyType.Csv, MyCsvRecord.class) //
-                    .to("log:after.marshal") //
+                from("direct:withlb")
+                    .marshal().bindy(BindyType.Csv, MyCsvRecord.class)
+                    .to("log:after.marshal")
                     .to("mock:result");
             }
         };

-- 
To stop receiving notification emails like this one, please contact
"commits@camel.apache.org" <co...@camel.apache.org>.