antonio     2004/02/15 01:34:32

  Modified:    src/java/org/apache/cocoon/transformation
                        AbstractSAXTransformer.java
  Log:
  Organize imports
  
  Revision  Changes    Path
  1.9       +11 -12    
cocoon-2.1/src/java/org/apache/cocoon/transformation/AbstractSAXTransformer.java
  
  Index: AbstractSAXTransformer.java
  ===================================================================
  RCS file: 
/home/cvs//cocoon-2.1/src/java/org/apache/cocoon/transformation/AbstractSAXTransformer.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- AbstractSAXTransformer.java       13 Feb 2004 11:50:30 -0000      1.8
  +++ AbstractSAXTransformer.java       15 Feb 2004 09:34:32 -0000      1.9
  @@ -50,6 +50,14 @@
   */
   package org.apache.cocoon.transformation;
   
  +import java.io.IOException;
  +import java.util.ArrayList;
  +import java.util.Iterator;
  +import java.util.List;
  +import java.util.Map;
  +import java.util.Properties;
  +import java.util.Stack;
  +
   import org.apache.avalon.excalibur.pool.Recyclable;
   import org.apache.avalon.framework.configuration.Configurable;
   import org.apache.avalon.framework.configuration.Configuration;
  @@ -83,15 +91,6 @@
   import org.xml.sax.ext.LexicalHandler;
   import org.xml.sax.helpers.AttributesImpl;
   
  -import java.io.IOException;
  -import java.util.*;
  -
  -/**
  - * @author CZiegeler
  - *
  - * To change the template for this generated type comment go to
  - * Window - Preferences - Java - Code Generation - Code and Comments
  - */
   /**
    *  This class is the basis for all transformers. It provides various useful
    *  methods and hooks for implementing own custom transformers.<p>
  @@ -248,7 +247,8 @@
           this.isInitialized = false;
   
           // get the current namespace
  -        this.namespaceURI = this.parameters.getParameter("namespaceURI", 
this.defaultNamespaceURI);
  +        this.namespaceURI = this.parameters.getParameter("namespaceURI",
  +                    this.defaultNamespaceURI);
   
           this.ignoreHooksCount = 0;
           this.ignoreEventsCount = 0;
  @@ -313,7 +313,6 @@
       throws SAXException {
           if (this.ignoreEventsCount == 0) super.endDocument();
       }
  -
   
       /**
        * Process the SAX event.
  
  
  

Reply via email to