Return-Path: Delivered-To: apmail-maven-m2-dev-archive@www.apache.org Received: (qmail 24934 invoked from network); 1 Mar 2005 04:04:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 1 Mar 2005 04:04:28 -0000 Received: (qmail 55711 invoked by uid 500); 1 Mar 2005 04:04:28 -0000 Delivered-To: apmail-maven-m2-dev-archive@maven.apache.org Received: (qmail 55696 invoked by uid 500); 1 Mar 2005 04:04:28 -0000 Mailing-List: contact m2-dev-help@maven.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Maven 2 Developers List" Reply-To: "Maven 2 Developers List" Delivered-To: mailing list m2-dev@maven.apache.org Received: (qmail 55683 invoked by uid 500); 1 Mar 2005 04:04:28 -0000 Delivered-To: apmail-maven-components-cvs@apache.org Received: (qmail 55680 invoked by uid 99); 1 Mar 2005 04:04:28 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Mon, 28 Feb 2005 20:04:26 -0800 Received: (qmail 24919 invoked by uid 1717); 1 Mar 2005 04:04:25 -0000 Date: 1 Mar 2005 04:04:25 -0000 Message-ID: <20050301040425.24918.qmail@minotaur.apache.org> From: brett@apache.org To: maven-components-cvs@apache.org Subject: cvs commit: maven-components/maven-artifact/src/main/java/org/apache/maven/artifact AbstractArtifactComponent.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N brett 2005/02/28 20:04:25 Modified: maven-artifact/src/main/java/org/apache/maven/artifact/handler AbstractArtifactHandler.java maven-artifact/src/main/java/org/apache/maven/artifact AbstractArtifactComponent.java Log: reformat Revision Changes Path 1.2 +6 -7 maven-components/maven-artifact/src/main/java/org/apache/maven/artifact/handler/AbstractArtifactHandler.java Index: AbstractArtifactHandler.java =================================================================== RCS file: /home/cvs/maven-components/maven-artifact/src/main/java/org/apache/maven/artifact/handler/AbstractArtifactHandler.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- AbstractArtifactHandler.java 9 Aug 2004 18:37:32 -0000 1.1 +++ AbstractArtifactHandler.java 1 Mar 2005 04:04:25 -0000 1.2 @@ -1,12 +1,7 @@ package org.apache.maven.artifact.handler; -import org.apache.maven.artifact.Artifact; -import org.codehaus.plexus.util.StringUtils; - -import java.io.File; - /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -21,6 +16,10 @@ * limitations under the License. */ +import org.apache.maven.artifact.Artifact; + +import java.io.File; + /** * @author Jason van Zyl * @version $Id$ 1.3 +8 -8 maven-components/maven-artifact/src/main/java/org/apache/maven/artifact/AbstractArtifactComponent.java Index: AbstractArtifactComponent.java =================================================================== RCS file: /home/cvs/maven-components/maven-artifact/src/main/java/org/apache/maven/artifact/AbstractArtifactComponent.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- AbstractArtifactComponent.java 29 Sep 2004 11:20:38 -0000 1.2 +++ AbstractArtifactComponent.java 1 Mar 2005 04:04:25 -0000 1.3 @@ -1,13 +1,7 @@ package org.apache.maven.artifact; -import org.codehaus.plexus.logging.AbstractLogEnabled; -import org.apache.maven.artifact.handler.manager.ArtifactHandlerManager; -import org.apache.maven.artifact.handler.manager.ArtifactHandlerNotFoundException; -import org.apache.maven.artifact.handler.ArtifactHandler; -import org.apache.maven.artifact.repository.ArtifactRepository; - /* - * Copyright 2001-2004 The Apache Software Foundation. + * Copyright 2001-2005 The Apache Software Foundation. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -22,6 +16,12 @@ * limitations under the License. */ +import org.apache.maven.artifact.handler.ArtifactHandler; +import org.apache.maven.artifact.handler.manager.ArtifactHandlerManager; +import org.apache.maven.artifact.handler.manager.ArtifactHandlerNotFoundException; +import org.apache.maven.artifact.repository.ArtifactRepository; +import org.codehaus.plexus.logging.AbstractLogEnabled; + /** * @author Jason van Zyl * @version $Id$