Return-Path: Delivered-To: apmail-activemq-camel-commits-archive@locus.apache.org Received: (qmail 52432 invoked from network); 3 Sep 2008 12:18:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 3 Sep 2008 12:18:51 -0000 Received: (qmail 26672 invoked by uid 500); 3 Sep 2008 12:18:49 -0000 Delivered-To: apmail-activemq-camel-commits-archive@activemq.apache.org Received: (qmail 26654 invoked by uid 500); 3 Sep 2008 12:18:49 -0000 Mailing-List: contact camel-commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: camel-dev@activemq.apache.org Delivered-To: mailing list camel-commits@activemq.apache.org Received: (qmail 26645 invoked by uid 99); 3 Sep 2008 12:18:49 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 Sep 2008 05:18:49 -0700 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; Wed, 03 Sep 2008 12:17:59 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A3A15238899E; Wed, 3 Sep 2008 05:18:30 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r691586 - /activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaPayloadHolder.java Date: Wed, 03 Sep 2008 12:18:30 -0000 To: camel-commits@activemq.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080903121830.A3A15238899E@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ningjiang Date: Wed Sep 3 05:18:29 2008 New Revision: 691586 URL: http://svn.apache.org/viewvc?rev=691586&view=rev Log: CAMEL-874 Fixed the typos Modified: activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaPayloadHolder.java Modified: activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaPayloadHolder.java URL: http://svn.apache.org/viewvc/activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaPayloadHolder.java?rev=691586&r1=691585&r2=691586&view=diff ============================================================================== --- activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaPayloadHolder.java (original) +++ activemq/camel/trunk/components/camel-mina/src/main/java/org/apache/camel/component/mina/MinaPayloadHolder.java Wed Sep 3 05:18:29 2008 @@ -114,7 +114,7 @@ if (object instanceof Serializable) { return object; } else { - LOG.warn("Object " + object + " can't be serialized, it will be exclued by the MinaPayloadHolder"); + LOG.warn("Object " + object + " can't be serialized, it will be excluded by the MinaPayloadHolder"); return null; } } @@ -131,7 +131,7 @@ result.put(entry.getKey(), entry.getValue()); } else { LOG.warn("Object " + entry.getValue() + " of key " + entry.getKey() - + " can't be serialized, it will be exclued by the MinaPayloadHolder"); + + " can't be serialized, it will be excluded by the MinaPayloadHolder"); } } return result;