You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by cz...@apache.org on 2002/03/11 10:30:35 UTC

cvs commit: xml-cocoon2/src/java/org/apache/cocoon/xml IncludeXMLConsumer.java

cziegeler    02/03/11 01:30:35

  Modified:    src/java/org/apache/cocoon/xml IncludeXMLConsumer.java
  Log:
  Fixed recursion bug
  
  Revision  Changes    Path
  1.5       +3 -3      xml-cocoon2/src/java/org/apache/cocoon/xml/IncludeXMLConsumer.java
  
  Index: IncludeXMLConsumer.java
  ===================================================================
  RCS file: /home/cvs/xml-cocoon2/src/java/org/apache/cocoon/xml/IncludeXMLConsumer.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- IncludeXMLConsumer.java	22 Feb 2002 07:03:58 -0000	1.4
  +++ IncludeXMLConsumer.java	11 Mar 2002 09:30:35 -0000	1.5
  @@ -64,7 +64,7 @@
    *
    * @author <a href="mailto:bloritsch@apache.org>Berin Loritsch</a>
    * @author <a href="mailto:cziegeler@apache.org>Carsten Ziegeler</a>
  - * @version CVS $Id: IncludeXMLConsumer.java,v 1.4 2002/02/22 07:03:58 cziegeler Exp $
  + * @version CVS $Id: IncludeXMLConsumer.java,v 1.5 2002/03/11 09:30:35 cziegeler Exp $
    */
   public class IncludeXMLConsumer extends AbstractXMLConsumer {
       final private ContentHandler contentHandler;
  @@ -122,11 +122,11 @@
       }
   
       public void processingInstruction(String name, String value) throws SAXException {
  -        this.processingInstruction(name, value);
  +        this.contentHandler.processingInstruction(name, value);
       }
   
       public void skippedEntity(String ent) throws SAXException {
  -        this.skippedEntity(ent);
  +        this.contentHandler.skippedEntity(ent);
       }
   
       public void startDTD(String name, String public_id, String system_id)
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     webmaster@xml.apache.org
To unsubscribe, e-mail:          cocoon-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: cocoon-cvs-help@xml.apache.org