sboag       00/10/17 11:49:28

  Modified:    java/src/org/apache/xalan/processor
                        CompilingStylesheetHandler.java
  Log:
  Pass one less parameter to avt.evaluate.
  
  Revision  Changes    Path
  1.9       +2 -2      
xml-xalan/java/src/org/apache/xalan/processor/CompilingStylesheetHandler.java
  
  Index: CompilingStylesheetHandler.java
  ===================================================================
  RCS file: 
/home/cvs/xml-xalan/java/src/org/apache/xalan/processor/CompilingStylesheetHandler.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- CompilingStylesheetHandler.java   2000/10/13 02:33:08     1.8
  +++ CompilingStylesheetHandler.java   2000/10/17 18:49:25     1.9
  @@ -512,7 +512,7 @@
                   // Exception won't be thrown, but we've gotta catch
                   try{
                       avtValueExpression=makeQuotedString(
  -                        avt.evaluate(null,null,null,null)
  +                        avt.evaluate(null,null,null)
                           );
                   }catch(SAXException e)
                   {
  @@ -625,7 +625,7 @@
         if(avt.isContextInsensitive())
             try
             {
  -            return makeQuotedString(avt.evaluate(null,null,null,null));
  +            return makeQuotedString(avt.evaluate(null,null,null));
             } catch(SAXException e)
             {
                 // Should never arise
  
  
  

Reply via email to