]> source.dussan.org Git - aspectj.git/commitdiff
unneeded imports
authorwisberg <wisberg>
Wed, 11 May 2005 09:23:45 +0000 (09:23 +0000)
committerwisberg <wisberg>
Wed, 11 May 2005 09:23:45 +0000 (09:23 +0000)
loadtime/src/org/aspectj/weaver/loadtime/definition/DocumentParser.java

index d78740fa6461667fee623a36ad087fccf5af74c5..4e1967870b6b9a2e7decdf5043c4f2ed319cc001 100644 (file)
 package org.aspectj.weaver.loadtime.definition;
 
 import org.xml.sax.Attributes;
-import org.xml.sax.ErrorHandler;
 import org.xml.sax.InputSource;
 import org.xml.sax.SAXException;
 import org.xml.sax.SAXNotRecognizedException;
 import org.xml.sax.SAXParseException;
 import org.xml.sax.XMLReader;
-import org.xml.sax.DTDHandler;
 import org.xml.sax.helpers.DefaultHandler;
 import org.xml.sax.helpers.XMLReaderFactory;
 
-import java.io.IOException;
 import java.io.InputStream;
 import java.net.URL;
 
-import com.sun.org.apache.xerces.internal.impl.XMLEntityManager;
-
 /**
  * FIXME AV - doc, concrete aspect
  *
@@ -107,7 +102,7 @@ public class DocumentParser extends DefaultHandler {
         }
     }
 
-    public InputSource resolveEntity(String publicId, String systemId) throws IOException, SAXException {
+    public InputSource resolveEntity(String publicId, String systemId) throws SAXException {
         if (publicId.equals(DTD_PUBLIC_ID) || publicId.equals(DTD_PUBLIC_ID_ALIAS)) {
             InputStream in = DTD_STREAM;
             if (in == null) {