You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2014/05/08 04:18:57 UTC

[2/2] git commit: Fixed the CS error of camel-sql

Fixed the CS error of camel-sql


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

Branch: refs/heads/master
Commit: a25dbec5ca862549e91bf0d365bb231240c4b6f4
Parents: ec40520
Author: Willem Jiang <wi...@gmail.com>
Authored: Wed May 7 13:07:57 2014 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Thu May 8 10:18:35 2014 +0800

----------------------------------------------------------------------
 .../java/org/apache/camel/component/sql/SqlGeneratedKeysTest.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/a25dbec5/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlGeneratedKeysTest.java
----------------------------------------------------------------------
diff --git a/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlGeneratedKeysTest.java b/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlGeneratedKeysTest.java
index 6a381ab..8b6fa7f 100644
--- a/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlGeneratedKeysTest.java
+++ b/components/camel-sql/src/test/java/org/apache/camel/component/sql/SqlGeneratedKeysTest.java
@@ -158,7 +158,7 @@ public class SqlGeneratedKeysTest extends CamelTestSupport {
         assertEquals(4, generatedKeys.size());
 
         int id = 3;
-        for (Map<String, Object> row: generatedKeys) {
+        for (Map<String, Object> row : generatedKeys) {
             assertEquals("auto increment value should be " + id, Integer.valueOf(id++), row.get("ID"));
         }