[Actionframework-users] bug in Action.java
Status: Inactive
Brought to you by:
ptoman
From: Mark D. A. <md...@di...> - 2002-09-18 12:03:42
|
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..... -mda |