Return-Path: Delivered-To: apmail-ant-notifications-archive@minotaur.apache.org Received: (qmail 21594 invoked from network); 4 Jan 2011 22:39:33 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 4 Jan 2011 22:39:33 -0000 Received: (qmail 89448 invoked by uid 500); 4 Jan 2011 22:38:08 -0000 Delivered-To: apmail-ant-notifications-archive@ant.apache.org Received: (qmail 88525 invoked by uid 500); 4 Jan 2011 22:38:07 -0000 Mailing-List: contact notifications-help@ant.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ant.apache.org Delivered-To: mailing list notifications@ant.apache.org Received: (qmail 88014 invoked by uid 99); 4 Jan 2011 22:38:06 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jan 2011 22:38:06 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 04 Jan 2011 22:38:04 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 9DEFA2388A3C; Tue, 4 Jan 2011 22:37:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1055220 - /ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/obr/xml/OBRXMLParser.java Date: Tue, 04 Jan 2011 22:37:43 -0000 To: notifications@ant.apache.org From: maartenc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110104223743.9DEFA2388A3C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: maartenc Date: Tue Jan 4 22:37:43 2011 New Revision: 1055220 URL: http://svn.apache.org/viewvc?rev=1055220&view=rev Log: Removed unused imports. Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/obr/xml/OBRXMLParser.java Modified: ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/obr/xml/OBRXMLParser.java URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/obr/xml/OBRXMLParser.java?rev=1055220&r1=1055219&r2=1055220&view=diff ============================================================================== --- ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/obr/xml/OBRXMLParser.java (original) +++ ant/ivy/core/trunk/src/java/org/apache/ivy/osgi/obr/xml/OBRXMLParser.java Tue Jan 4 22:37:43 2011 @@ -19,7 +19,6 @@ package org.apache.ivy.osgi.obr.xml; import java.io.IOException; import java.io.InputStream; -import java.net.URL; import java.text.ParseException; import javax.xml.parsers.ParserConfigurationException; @@ -32,12 +31,8 @@ import org.apache.ivy.osgi.util.Version; import org.apache.ivy.util.Message; import org.apache.ivy.util.XMLHelper; import org.xml.sax.Attributes; -import org.xml.sax.InputSource; import org.xml.sax.Locator; import org.xml.sax.SAXException; -import org.xml.sax.XMLReader; -import org.xml.sax.ext.LexicalHandler; -import org.xml.sax.helpers.XMLReaderFactory; public class OBRXMLParser {