dims 01/05/31 05:09:50 Modified: src/org/apache/cocoon/xml IncludeXMLConsumer.java Log: Fixed typo. Need my coffee... :) Revision Changes Path 1.3 +8 -8 xml-cocoon2/src/org/apache/cocoon/xml/IncludeXMLConsumer.java Index: IncludeXMLConsumer.java =================================================================== RCS file: /home/cvs/xml-cocoon2/src/org/apache/cocoon/xml/IncludeXMLConsumer.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- IncludeXMLConsumer.java 2001/05/31 12:06:16 1.2 +++ IncludeXMLConsumer.java 2001/05/31 12:09:47 1.3 @@ -19,7 +19,7 @@ * </code>endDocument</code> messages. * * @author <a href="mailto:[EMAIL PROTECTED]>Berin Loritsch</a> - * @version $Revision: 1.2 $ $Date: 2001/05/31 12:06:16 $ + * @version $Revision: 1.3 $ $Date: 2001/05/31 12:09:47 $ */ public class IncludeXMLConsumer extends AbstractXMLConsumer { final private ContentHandler contentHandler; @@ -86,38 +86,38 @@ public void startDTD(String name, String public_id, String system_id) throws SAXException { - if(lexicaHandler != null) + if(lexicalHandler != null) lexicalHandler.startDTD(name,public_id,system_id); } public void endDTD() throws SAXException { - if(lexicaHandler != null) + if(lexicalHandler != null) lexicalHandler.endDTD(); } public void startEntity(String name) throws SAXException { - if(lexicaHandler != null) + if(lexicalHandler != null) lexicalHandler.startEntity(name); } public void endEntity(String name) throws SAXException { - if(lexicaHandler != null) + if(lexicalHandler != null) lexicalHandler.endEntity(name); } public void startCDATA() throws SAXException { - if(lexicaHandler != null) + if(lexicalHandler != null) lexicalHandler.startCDATA(); } public void endCDATA() throws SAXException { - if(lexicaHandler != null) + if(lexicalHandler != null) lexicalHandler.endCDATA(); } public void comment(char ary[], int start, int length) throws SAXException { - if(lexicaHandler != null) + if(lexicalHandler != null) lexicalHandler.comment(ary,start,length); } } ---------------------------------------------------------------------- In case of troubles, e-mail: [EMAIL PROTECTED] To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]