You are viewing a plain text version of this content. The canonical link for it is here.
Posted to m2-dev@maven.apache.org by br...@apache.org on 2005/03/01 05:04:25 UTC

cvs commit: maven-components/maven-artifact/src/main/java/org/apache/maven/artifact AbstractArtifactComponent.java

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 <a href="mailto:jason@maven.org">Jason van Zyl</a>
    * @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 <a href="mailto:jason@maven.org">Jason van Zyl</a>
    * @version $Id$