Return-Path: Delivered-To: apmail-maven-surefire-commits-archive@www.apache.org Received: (qmail 68999 invoked from network); 15 Nov 2010 11:32:07 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 15 Nov 2010 11:32:07 -0000 Received: (qmail 62518 invoked by uid 500); 15 Nov 2010 11:32:39 -0000 Delivered-To: apmail-maven-surefire-commits-archive@maven.apache.org Received: (qmail 62480 invoked by uid 500); 15 Nov 2010 11:32:38 -0000 Mailing-List: contact surefire-commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: surefire-dev@maven.apache.org Delivered-To: mailing list surefire-commits@maven.apache.org Received: (qmail 62473 invoked by uid 99); 15 Nov 2010 11:32:38 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Nov 2010 11:32:38 +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; Mon, 15 Nov 2010 11:32:35 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DEDCC23889F1; Mon, 15 Nov 2010 11:31:20 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1035227 - in /maven/surefire/trunk: surefire-booter/src/main/java/org/apache/maven/surefire/booter/SurefireBooter.java surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/StagedLocalRepoHelper.java Date: Mon, 15 Nov 2010 11:31:20 -0000 To: surefire-commits@maven.apache.org From: olamy@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101115113120.DEDCC23889F1@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: olamy Date: Mon Nov 15 11:31:20 2010 New Revision: 1035227 URL: http://svn.apache.org/viewvc?rev=1035227&view=rev Log: remove unused imports Modified: maven/surefire/trunk/surefire-booter/src/main/java/org/apache/maven/surefire/booter/SurefireBooter.java maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/StagedLocalRepoHelper.java Modified: maven/surefire/trunk/surefire-booter/src/main/java/org/apache/maven/surefire/booter/SurefireBooter.java URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-booter/src/main/java/org/apache/maven/surefire/booter/SurefireBooter.java?rev=1035227&r1=1035226&r2=1035227&view=diff ============================================================================== --- maven/surefire/trunk/surefire-booter/src/main/java/org/apache/maven/surefire/booter/SurefireBooter.java (original) +++ maven/surefire/trunk/surefire-booter/src/main/java/org/apache/maven/surefire/booter/SurefireBooter.java Mon Nov 15 11:31:20 2010 @@ -19,20 +19,6 @@ package org.apache.maven.surefire.booter * under the License. */ -import org.apache.maven.surefire.Surefire; -import org.apache.maven.surefire.booter.output.FileOutputConsumerProxy; -import org.apache.maven.surefire.booter.output.ForkingStreamConsumer; -import org.apache.maven.surefire.booter.output.OutputConsumer; -import org.apache.maven.surefire.booter.output.StandardOutputConsumer; -import org.apache.maven.surefire.booter.output.SupressFooterOutputConsumerProxy; -import org.apache.maven.surefire.booter.output.SupressHeaderOutputConsumerProxy; -import org.apache.maven.surefire.testset.TestSetFailedException; -import org.codehaus.plexus.util.IOUtil; -import org.codehaus.plexus.util.cli.CommandLineException; -import org.codehaus.plexus.util.cli.CommandLineUtils; -import org.codehaus.plexus.util.cli.Commandline; -import org.codehaus.plexus.util.cli.StreamConsumer; - import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; @@ -46,6 +32,19 @@ import java.util.List; import java.util.Map; import java.util.Properties; +import org.apache.maven.surefire.booter.output.FileOutputConsumerProxy; +import org.apache.maven.surefire.booter.output.ForkingStreamConsumer; +import org.apache.maven.surefire.booter.output.OutputConsumer; +import org.apache.maven.surefire.booter.output.StandardOutputConsumer; +import org.apache.maven.surefire.booter.output.SupressFooterOutputConsumerProxy; +import org.apache.maven.surefire.booter.output.SupressHeaderOutputConsumerProxy; +import org.apache.maven.surefire.testset.TestSetFailedException; +import org.codehaus.plexus.util.IOUtil; +import org.codehaus.plexus.util.cli.CommandLineException; +import org.codehaus.plexus.util.cli.CommandLineUtils; +import org.codehaus.plexus.util.cli.Commandline; +import org.codehaus.plexus.util.cli.StreamConsumer; + /** * @author Jason van Zyl * @author Emmanuel Venisse Modified: maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/StagedLocalRepoHelper.java URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/StagedLocalRepoHelper.java?rev=1035227&r1=1035226&r2=1035227&view=diff ============================================================================== --- maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/StagedLocalRepoHelper.java (original) +++ maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/StagedLocalRepoHelper.java Mon Nov 15 11:31:20 2010 @@ -19,6 +19,12 @@ package org.apache.maven.surefire.its; * under the License. */ +import java.io.File; +import java.io.IOException; +import java.util.Iterator; +import java.util.List; +import java.util.Random; + import org.apache.maven.settings.Profile; import org.apache.maven.settings.Repository; import org.apache.maven.settings.RepositoryPolicy; @@ -29,13 +35,6 @@ import org.codehaus.plexus.util.ReaderFa import org.codehaus.plexus.util.WriterFactory; import org.codehaus.plexus.util.xml.pull.XmlPullParserException; -import java.io.File; -import java.io.FileWriter; -import java.io.IOException; -import java.util.Iterator; -import java.util.List; -import java.util.Random; - /** * Helper class to assist in using verifier with a staged local repository. *