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 A718A18740 for ; Fri, 7 Aug 2015 10:15:23 +0000 (UTC) Received: (qmail 9670 invoked by uid 500); 7 Aug 2015 10:15:23 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 9624 invoked by uid 500); 7 Aug 2015 10:15:23 -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 9615 invoked by uid 99); 7 Aug 2015 10:15:23 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 07 Aug 2015 10:15:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 717F2DFFEF; Fri, 7 Aug 2015 10:15:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: davsclaus@apache.org To: commits@camel.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: camel git commit: Fixed parameter unusued in beanio java dsl Date: Fri, 7 Aug 2015 10:15:23 +0000 (UTC) Repository: camel Updated Branches: refs/heads/camel-2.15.x ca7e0c7ee -> a103b4475 Fixed parameter unusued in beanio java dsl Project: http://git-wip-us.apache.org/repos/asf/camel/repo Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/a103b447 Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/a103b447 Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/a103b447 Branch: refs/heads/camel-2.15.x Commit: a103b447517d6d4bb80b75669b201655eafabf11 Parents: ca7e0c7 Author: Claus Ibsen Authored: Fri Aug 7 11:09:57 2015 +0200 Committer: Claus Ibsen Committed: Fri Aug 7 12:22:59 2015 +0200 ---------------------------------------------------------------------- .../src/main/java/org/apache/camel/builder/DataFormatClause.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/camel/blob/a103b447/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java ---------------------------------------------------------------------- diff --git a/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java b/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java index 17ff247..f839d58 100644 --- a/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java +++ b/camel-core/src/main/java/org/apache/camel/builder/DataFormatClause.java @@ -142,7 +142,7 @@ public class DataFormatClause> { dataFormat.setMapping(mapping); dataFormat.setStreamName(streamName); dataFormat.setEncoding(encoding); - dataFormat.setIgnoreInvalidRecords(ignoreInvalidRecords); + dataFormat.setIgnoreUnidentifiedRecords(ignoreUnidentifiedRecords); dataFormat.setIgnoreUnexpectedRecords(ignoreUnexpectedRecords); dataFormat.setIgnoreInvalidRecords(ignoreInvalidRecords); return dataFormat(dataFormat);