Return-Path: X-Original-To: apmail-camel-commits-archive@www.apache.org Delivered-To: apmail-camel-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 34DFF11E97 for ; Tue, 13 May 2014 02:49:37 +0000 (UTC) Received: (qmail 37196 invoked by uid 500); 10 May 2014 22:00:43 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 7017 invoked by uid 500); 10 May 2014 21:58:35 -0000 Mailing-List: contact commits-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list commits@camel.apache.org Received: (qmail 59772 invoked by uid 99); 10 May 2014 21:56:16 -0000 Received: from Unknown (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 10 May 2014 21:56:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id BF24E9283C9; Thu, 8 May 2014 02:18:56 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ningjiang@apache.org To: commits@camel.apache.org Date: Thu, 08 May 2014 02:18:57 -0000 Message-Id: In-Reply-To: <2be0bf56ff744c3db56ea38f3848c9fd@git.apache.org> References: <2be0bf56ff744c3db56ea38f3848c9fd@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [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 Authored: Wed May 7 13:07:57 2014 +0800 Committer: Willem Jiang 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 row: generatedKeys) { + for (Map row : generatedKeys) { assertEquals("auto increment value should be " + id, Integer.valueOf(id++), row.get("ID")); }