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 2004/01/05 15:23:00 UTC

cvs commit: cocoon-2.2/src/java/org/apache/cocoon/xml XMLConsumer.java

cziegeler    2004/01/05 06:23:00

  Modified:    src/java/org/apache/cocoon/xml XMLConsumer.java
  Log:
  Compatibility to xmlutils
  
  Revision  Changes    Path
  1.2       +2 -5      cocoon-2.2/src/java/org/apache/cocoon/xml/XMLConsumer.java
  
  Index: XMLConsumer.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.2/src/java/org/apache/cocoon/xml/XMLConsumer.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- XMLConsumer.java	9 Mar 2003 00:09:46 -0000	1.1
  +++ XMLConsumer.java	5 Jan 2004 14:23:00 -0000	1.2
  @@ -50,9 +50,6 @@
   */
   package org.apache.cocoon.xml;
   
  -import org.xml.sax.ContentHandler;
  -import org.xml.sax.ext.LexicalHandler;
  -
   /**
    * This interfaces identifies classes that consume XML data, receiving
    * notification of SAX events.
  @@ -64,5 +61,5 @@
    *         (Apache Software Foundation)
    * @version CVS $Id$
    */
  -public interface XMLConsumer extends ContentHandler, LexicalHandler {
  +public interface XMLConsumer extends org.apache.excalibur.xml.sax.XMLConsumer {
   }