Return-Path: Delivered-To: apmail-camel-commits-archive@www.apache.org Received: (qmail 77503 invoked from network); 9 May 2009 10:45:48 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 May 2009 10:45:48 -0000 Received: (qmail 23352 invoked by uid 500); 9 May 2009 10:45:48 -0000 Delivered-To: apmail-camel-commits-archive@camel.apache.org Received: (qmail 23307 invoked by uid 500); 9 May 2009 10:45:48 -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 23297 invoked by uid 99); 9 May 2009 10:45:48 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 09 May 2009 10:45:48 +0000 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; Sat, 09 May 2009 10:45:44 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ABF6523888F4; Sat, 9 May 2009 10:45:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r773196 - /camel/trunk/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java Date: Sat, 09 May 2009 10:45:23 -0000 To: commits@camel.apache.org From: ningjiang@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20090509104523.ABF6523888F4@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: ningjiang Date: Sat May 9 10:45:23 2009 New Revision: 773196 URL: http://svn.apache.org/viewvc?rev=773196&view=rev Log: Fixed a typo in the DeadLetterChannel Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java Modified: camel/trunk/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java URL: http://svn.apache.org/viewvc/camel/trunk/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java?rev=773196&r1=773195&r2=773196&view=diff ============================================================================== --- camel/trunk/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java (original) +++ camel/trunk/camel-core/src/main/java/org/apache/camel/processor/DeadLetterChannel.java Sat May 9 10:45:23 2009 @@ -43,7 +43,7 @@ // (eg the Timer task code). However we should consider using Channels that has internal // producer/consumer queues with "delayed" support so a redelivery is just to move an // exchange to this channel with the computed delay time - // we need to provide option so end users can deside if they would like to spawn an async thread + // we need to provide option so end users can decide if they would like to spawn an async thread // or not. Also consider MEP as InOut does not work with async then as the original caller thread // is expecting a reply in the sync thread.