Re: [Actionframework-users] bug in Action.java
Status: Inactive
Brought to you by:
ptoman
|
From: Mark D. A. <md...@di...> - 2002-09-18 15:31:02
|
Note that just making the i-1 be i doesn't seem correct either.
The problem only seems to happen with static components; i made the component
be "application" and it stopped throwing.
-mda
----- Original Message -----
From: "Mark D. Anderson" <md...@di...>
To: <act...@li...>
Sent: Wednesday, September 18, 2002 12:54 AM
Subject: [Actionframework-users] bug in Action.java
> Action.java has this code:
> for (int i = 0; i < convertedParams.length; i++)
> try {
> if (retValue == null)
> throw new ActionException("Method '" + methodStack[i-1] + "' of action '" + debugName + "' returns
> null");
>
> That -1 is kind of a problem when i=0.....
|