You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gz...@apache.org on 2016/03/27 18:25:27 UTC

[1/2] camel git commit: Fix Checkstyle issue

Repository: camel
Updated Branches:
  refs/heads/camel-2.15.x c54b3628b -> 21910710c


Fix Checkstyle issue

Signed-off-by: Gregor Zurowski <gr...@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 <gr...@zurowski.org>
Authored: Sun Mar 27 18:24:21 2016 +0200
Committer: Gregor Zurowski <gr...@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");
             }
         };
     }


[2/2] camel git commit: [Minor] Remove unused imports

Posted by gz...@apache.org.
[Minor] Remove unused imports

Signed-off-by: Gregor Zurowski <gr...@zurowski.org>

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

Branch: refs/heads/camel-2.15.x
Commit: 21910710c43b6fd0bb444663303a0bae90990413
Parents: cd2c133
Author: Gregor Zurowski <gr...@zurowski.org>
Authored: Sun Mar 27 18:25:14 2016 +0200
Committer: Gregor Zurowski <gr...@zurowski.org>
Committed: Sun Mar 27 18:25:14 2016 +0200

----------------------------------------------------------------------
 .../test/java/org/apache/camel/component/jdbc/JdbcFix9491Test.java  | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/21910710/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 753b4da..bcfe211 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
@@ -16,7 +16,6 @@
  */
 package org.apache.camel.component.jdbc;
 
-import java.util.Collection;
 import java.util.List;
 
 import org.apache.camel.EndpointInject;