You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@santuario.apache.org by am...@apache.org on 2003/09/18 00:02:16 UTC

cvs commit: xml-security/src_unitTests/org/apache/xml/security/test/c14n/helper AttrCompareTest.java

amattheu    2003/09/17 15:02:16

  Modified:    src_unitTests/org/apache/xml/security/test/c14n/helper
                        AttrCompareTest.java
  Log:
  Cleaned up imports.
  
  Revision  Changes    Path
  1.5       +6 -9      xml-security/src_unitTests/org/apache/xml/security/test/c14n/helper/AttrCompareTest.java
  
  Index: AttrCompareTest.java
  ===================================================================
  RCS file: /home/cvs/xml-security/src_unitTests/org/apache/xml/security/test/c14n/helper/AttrCompareTest.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- AttrCompareTest.java	11 Feb 2003 16:02:58 -0000	1.4
  +++ AttrCompareTest.java	17 Sep 2003 22:02:16 -0000	1.5
  @@ -60,23 +60,20 @@
   
   
   
  -import java.io.*;
   import javax.xml.parsers.DocumentBuilder;
   import javax.xml.parsers.DocumentBuilderFactory;
   import javax.xml.parsers.ParserConfigurationException;
  +
   import junit.framework.Test;
   import junit.framework.TestCase;
   import junit.framework.TestSuite;
  -import org.apache.xerces.dom.DOMImplementationImpl;
  -import org.apache.xerces.dom.DocumentImpl;
  -import org.apache.xml.serialize.Serializer;
  -import org.apache.xml.serialize.SerializerFactory;
  -import org.apache.xml.serialize.XMLSerializer;
   
  -// import org.apache.xml.serialize.OutputFormat;
  -import org.w3c.dom.*;
  -import org.apache.xml.security.c14n.helper.*;
  +import org.apache.xml.security.c14n.helper.AttrCompare;
   import org.apache.xml.security.utils.Constants;
  +import org.w3c.dom.Attr;
  +import org.w3c.dom.Document;
  +import org.w3c.dom.Element;
  +import org.w3c.dom.NamedNodeMap;
   
   
   /**