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/01/10 01:50:57 UTC

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

luehe       2003/01/09 16:50:57

  Modified:    el/src/java/org/apache/commons/el PropertySuffix.java
  Log:
  Adjusted PropertySuffix.evaluateIndex() to new signature of
  superclass, by removing the "pContext" parameter and changing the type
  of the "functions" parameter from "Map" to "FunctionMapper".
  
  Revision  Changes    Path
  1.2       +4 -4      jakarta-commons-sandbox/el/src/java/org/apache/commons/el/PropertySuffix.java
  
  Index: PropertySuffix.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/el/src/java/org/apache/commons/el/PropertySuffix.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- PropertySuffix.java	8 Jan 2003 23:46:14 -0000	1.1
  +++ PropertySuffix.java	10 Jan 2003 00:50:57 -0000	1.2
  @@ -60,6 +60,7 @@
   import java.util.Map;
   import javax.servlet.jsp.el.ELException;
   import javax.servlet.jsp.el.VariableResolver;
  +import javax.servlet.jsp.el.FunctionMapper;
   
   /**
    *
  @@ -102,9 +103,8 @@
      *
      * Gets the value of the index
      **/
  -  Object evaluateIndex (Object pContext,
  -                        VariableResolver pResolver,
  -                        Map functions,
  +  Object evaluateIndex (VariableResolver pResolver,
  +                        FunctionMapper functions,
                           String defaultPrefix,
                           Logger pLogger)
       throws ELException
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>