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:[EMAIL PROTECTED]>Berin Loritsch</a> * @author <a href="mailto:[EMAIL PROTECTED]>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: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]