Repository: camel Updated Branches: refs/heads/camel-2.15.x c54b3628b -> 21910710c
Fix Checkstyle issue Signed-off-by: Gregor Zurowski <gre...@zurowski.org> Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/cd2c1331 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/cd2c1331 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/cd2c1331 Branch: refs/heads/camel-2.15.x Commit: cd2c1331ccd899715a2ab2c7ba547d3c285f3179 Parents: c54b362 Author: Gregor Zurowski <gre...@zurowski.org> Authored: Sun Mar 27 18:24:21 2016 +0200 Committer: Gregor Zurowski <gre...@zurowski.org> Committed: Sun Mar 27 18:24:21 2016 +0200 ---------------------------------------------------------------------- .../java/org/apache/camel/component/jdbc/JdbcFix9491Test.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/cd2c1331/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java ---------------------------------------------------------------------- diff --git a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java index 41eafbb..753b4da 100644 --- a/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java +++ b/components/camel-jdbc/src/test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java @@ -53,8 +53,8 @@ public class JdbcFix9491Test extends AbstractJdbcTestSupport { protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { public void configure() throws Exception { - from("direct:start"). - to("jdbc:testdb?statement.maxRows=2").to("mock:result"); + from("direct:start") + .to("jdbc:testdb?statement.maxRows=2").to("mock:result"); } }; }