jvanzyl     2003/12/03 17:08:12

  Modified:    maven-model/src/java/org/apache/maven/model Model.java
  Log:
  o file reference should not be stored here and belongs in the project. might
    not be a file anyway.
  
  Revision  Changes    Path
  1.10      +1 -25     
maven-components/maven-model/src/java/org/apache/maven/model/Model.java
  
  Index: Model.java
  ===================================================================
  RCS file: 
/home/cvs/maven-components/maven-model/src/java/org/apache/maven/model/Model.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- Model.java        4 Dec 2003 01:01:19 -0000       1.9
  +++ Model.java        4 Dec 2003 01:08:12 -0000       1.10
  @@ -56,7 +56,6 @@
    * ====================================================================
    */
   
  -import java.io.File;
   import java.io.Serializable;
   import java.util.ArrayList;
   import java.util.HashMap;
  @@ -172,9 +171,6 @@
       /** Project group id. */
       private String groupId;
   
  -    /** File that this POM object was derived from. */
  -    private File file;
  -
       /** Artifact list. */
       private List artifactList;
   
  @@ -324,26 +320,6 @@
       public List getArtifacts()
       {
           return artifactList;
  -    }
  -
  -    /**
  -     * Set the file that this POM was derived from.
  -     *
  -     * @param file POM file
  -     */
  -    public void setFile( File file )
  -    {
  -        this.file = file;
  -    }
  -
  -    /**
  -     * Get the file this POM was derived from
  -     *
  -     * @return POM file
  -     */
  -    public File getFile()
  -    {
  -        return file;
       }
   
       /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to