You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by lu...@apache.org on 2003/02/25 00:13:04 UTC

cvs commit: jakarta-commons/el/src/java/org/apache/commons/el FunctionInvocation.java

luehe       2003/02/24 15:13:04

  Modified:    el/src/java/org/apache/commons/el FunctionInvocation.java
  Log:
  fixed arg order in resource string for INAPPROPRIATE_FUNCTION_ARG_COUNT
  
  Revision  Changes    Path
  1.2       +1 -1      jakarta-commons/el/src/java/org/apache/commons/el/FunctionInvocation.java
  
  Index: FunctionInvocation.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons/el/src/java/org/apache/commons/el/FunctionInvocation.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FunctionInvocation.java	4 Feb 2003 00:22:24 -0000	1.1
  +++ FunctionInvocation.java	24 Feb 2003 23:13:04 -0000	1.2
  @@ -156,7 +156,7 @@
       Class[] params = target.getParameterTypes();
       if (params.length != argumentList.size())
         pLogger.logError(Constants.INAPPROPRIATE_FUNCTION_ARG_COUNT,
  -		       new Integer(params.length),
  +		       functionName, new Integer(params.length),
   		       new Integer(argumentList.size()));
   
       // now, walk through each parameter, evaluating and casting its argument
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org