Return-Path: Delivered-To: apmail-struts-dev-archive@www.apache.org Received: (qmail 11462 invoked from network); 18 May 2004 20:00:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 18 May 2004 20:00:33 -0000 Received: (qmail 9085 invoked by uid 500); 18 May 2004 20:00:47 -0000 Delivered-To: apmail-struts-dev-archive@struts.apache.org Received: (qmail 8972 invoked by uid 500); 18 May 2004 20:00:46 -0000 Mailing-List: contact dev-help@struts.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Struts Developers List" Reply-To: "Struts Developers List" Delivered-To: mailing list dev@struts.apache.org Received: (qmail 8919 invoked by uid 500); 18 May 2004 20:00:45 -0000 Received: (qmail 8854 invoked by uid 500); 18 May 2004 20:00:45 -0000 Received: (qmail 8545 invoked by uid 98); 18 May 2004 20:00:42 -0000 Received: from germuska@apache.org by hermes.apache.org by uid 82 with qmail-scanner-1.20 (clamuko: 0.70. Clear:RC:0(209.237.227.194):. Processed in 0.307174 secs); 18 May 2004 20:00:42 -0000 X-Qmail-Scanner-Mail-From: germuska@apache.org via hermes.apache.org X-Qmail-Scanner: 1.20 (Clear:RC:0(209.237.227.194):. Processed in 0.307174 secs) Received: from unknown (HELO minotaur.apache.org) (209.237.227.194) by hermes.apache.org with SMTP; 18 May 2004 20:00:41 -0000 Received: (qmail 11339 invoked by uid 1790); 18 May 2004 20:00:10 -0000 Date: 18 May 2004 20:00:10 -0000 Message-ID: <20040518200010.11338.qmail@minotaur.apache.org> From: germuska@apache.org To: jakarta-struts-cvs@apache.org Subject: cvs commit: jakarta-struts/src/share/org/apache/struts/action ExceptionHandler.java X-Spam-Rating: hermes.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N germuska 2004/05/18 13:00:10 Modified: src/share/org/apache/struts/action ExceptionHandler.java Log: Fix recursion bug by casting ActionError to ActionMessage. PR: 29071 Reported by: Hal Deadman Revision Changes Path 1.26 +4 -4 jakarta-struts/src/share/org/apache/struts/action/ExceptionHandler.java Index: ExceptionHandler.java =================================================================== RCS file: /home/cvs/jakarta-struts/src/share/org/apache/struts/action/ExceptionHandler.java,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- ExceptionHandler.java 14 Mar 2004 06:23:42 -0000 1.25 +++ ExceptionHandler.java 18 May 2004 20:00:10 -0000 1.26 @@ -147,7 +147,7 @@ ActionForward forward, String scope) { - this.storeException(request, property, error, forward, scope); + this.storeException(request, property, (ActionMessage) error, forward, scope); // :TODO: Remove after Struts 1.2 } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@struts.apache.org For additional commands, e-mail: dev-help@struts.apache.org