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/04/09 07:58:17 UTC

[6/6] camel git commit: Polished. Fixes #1605

Polished. Fixes #1605


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a8eebcb9
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a8eebcb9
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a8eebcb9

Branch: refs/heads/camel-2.18.x
Commit: a8eebcb96450207caf1b3d0cea79be47a9cbb8a9
Parents: 8a207ba
Author: Claus Ibsen <da...@apache.org>
Authored: Sun Apr 9 09:56:53 2017 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sun Apr 9 09:58:03 2017 +0200

----------------------------------------------------------------------
 .../bindy/csv/BindyRecordFieldStartingWithSeperatorCharTest.java | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a8eebcb9/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyRecordFieldStartingWithSeperatorCharTest.java
----------------------------------------------------------------------
diff --git a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyRecordFieldStartingWithSeperatorCharTest.java b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyRecordFieldStartingWithSeperatorCharTest.java
index 01a816b..d2e1b76 100755
--- a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyRecordFieldStartingWithSeperatorCharTest.java
+++ b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindyRecordFieldStartingWithSeperatorCharTest.java
@@ -43,7 +43,6 @@ public class BindyRecordFieldStartingWithSeperatorCharTest extends CamelTestSupp
         template.sendBody("direct:start", "',','val2,',3");
         template.sendBody("direct:start", "'',',val2,',4");
 
-
         mockEndPoint.assertIsSatisfied();
 
         BindyCsvRowFormat row = mockEndPoint.getExchanges().get(0).getIn().getBody(BindyCsvRowFormat.class);
@@ -65,9 +64,6 @@ public class BindyRecordFieldStartingWithSeperatorCharTest extends CamelTestSupp
         assertEquals(null, row.getFirstField());
         assertEquals(",val2,", row.getSecondField());
         assertEquals(BigDecimal.valueOf(4), row.getNumber());
-
-
-
     }
 
     @Override