You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@locus.apache.org on 2000/07/31 00:38:23 UTC

cvs commit: xml-xalan/java/src/org/apache/xpath/functions FuncExtFunction.java

sboag       00/07/30 15:38:23

  Modified:    java/src/org/apache/xpath/functions FuncExtFunction.java
  Log:
  In progress... working on function overloading, and integration with ExtensionContext object.
  
  Revision  Changes    Path
  1.2       +1 -1      xml-xalan/java/src/org/apache/xpath/functions/FuncExtFunction.java
  
  Index: FuncExtFunction.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xpath/functions/FuncExtFunction.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FuncExtFunction.java	2000/07/05 14:46:35	1.1
  +++ FuncExtFunction.java	2000/07/30 22:38:23	1.2
  @@ -45,7 +45,7 @@
       }
       ExtensionsTable etable = xctxt.getExtensionsTable();
       Object val = etable.extFunction(m_namespace, m_extensionName, 
  -                                    argVec, m_methodKey);
  +                                    argVec, m_methodKey, xctxt);
       if(null != val)
       {
         if(val instanceof XObject)