Return-Path: Delivered-To: apmail-camel-commits-archive@www.apache.org Received: (qmail 78884 invoked from network); 20 Jan 2009 00:28:21 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 20 Jan 2009 00:28:21 -0000 Received: (qmail 65438 invoked by uid 500); 20 Jan 2009 00:28:21 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 65411 invoked by uid 500); 20 Jan 2009 00:28:21 -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 65402 invoked by uid 99); 20 Jan 2009 00:28:20 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 19 Jan 2009 16:28:20 -0800 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Jan 2009 00:28:19 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 24B84238889E; Mon, 19 Jan 2009 16:27:58 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r735888 - /camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java Date: Tue, 20 Jan 2009 00:27:57 -0000 To: commits@camel.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090120002758.24B84238889E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ningjiang Date: Mon Jan 19 16:27:57 2009 New Revision: 735888 URL: http://svn.apache.org/viewvc?rev=735888&view=rev Log: Fixed the build camel-mail Modified: camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java Modified: camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java?rev=735888&r1=735887&r2=735888&view=diff ============================================================================== --- camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java (original) +++ camel/trunk/components/camel-mail/src/main/java/org/apache/camel/component/mail/MailConverters.java Mon Jan 19 16:27:57 2009 @@ -86,7 +86,7 @@ if (s == null) { return null; } - return IOConverter.toInputStream(s); + return IOConverter.toInputStream(s, null); } /** @@ -99,7 +99,7 @@ if (s == null) { return null; } - return IOConverter.toInputStream(s); + return IOConverter.toInputStream(s, null); } }