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...@apache.org on 2001/01/05 19:27:17 UTC

cvs commit: xml-xalan/java/src/javax/xml/transform/sax SAXResult.java

sboag       01/01/05 10:27:17

  Modified:    java/src/javax/xml/transform/sax SAXResult.java
  Log:
  setLexicalHandler(LexicalHandler handler) was defined as
  this.lexhandler = lexhandler!!!
  Changed to this.lexhandler = handler.
  (This is why I use m_xxx in my own coding conventions, where
  this bug would have been much clearer.  This is
  not done this way here because I was trying to stick to Sun conventions).
  
  Revision  Changes    Path
  1.9       +2 -2      xml-xalan/java/src/javax/xml/transform/sax/SAXResult.java
  
  Index: SAXResult.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/javax/xml/transform/sax/SAXResult.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- SAXResult.java	2000/12/20 19:41:39	1.8
  +++ SAXResult.java	2001/01/05 18:27:17	1.9
  @@ -55,7 +55,7 @@
    * <http://www.apache.org/>.
    */
   /**
  - * $Id: SAXResult.java,v 1.8 2000/12/20 19:41:39 sboag Exp $
  + * $Id: SAXResult.java,v 1.9 2001/01/05 18:27:17 sboag Exp $
    */
   package javax.xml.transform.sax;
   
  @@ -126,7 +126,7 @@
        * handling lexical parse events.
        */
       public void setLexicalHandler(LexicalHandler handler) {
  -        this.lexhandler = lexhandler;
  +        this.lexhandler = handler;
       }
   
       /**