jvanzyl     2003/01/12 21:32:52

  Modified:    src/java/org/apache/maven/project Project.java
  Log:
  o remove unused methods.
  
  Revision  Changes    Path
  1.63      +5 -37     
jakarta-turbine-maven/src/java/org/apache/maven/project/Project.java
  
  Index: Project.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/project/Project.java,v
  retrieving revision 1.62
  retrieving revision 1.63
  diff -u -r1.62 -r1.63
  --- Project.java      13 Jan 2003 00:04:52 -0000      1.62
  +++ Project.java      13 Jan 2003 05:32:52 -0000      1.63
  @@ -220,7 +220,7 @@
        * A list of PackageGroup instances used for documenting the packages
        */
       private List packageGroups;
  -    
  +
       /**
        * Default constructor.
        */
  @@ -967,38 +967,6 @@
       }
   
       /**
  -     * Gets the module attribute of the Project object
  -     *
  -     * @return the cvs module specified by the <repository> tag or null
  -     * if there wasn't one
  -     */
  -    public String getCvsModule()
  -    {
  -        if ( getRepository() == null )
  -        {
  -            return null;
  -        }
  -
  -        return getRepository().getCvsModule();
  -    }
  -
  -    /**
  -     * Gets the module attribute of the Project object
  -     *
  -     * @return the cvs root as specified by the <repository> or null if
  -     * there is no repository
  -     */
  -    public String getCvsRoot()
  -    {
  -        if ( getRepository() == null )
  -        {
  -            return null;
  -        }
  -
  -        return getRepository().getCvsRoot();
  -    }
  -
  -    /**
        * Add a distribution to this project.
        *
        * @param version Distribution for this project.
  @@ -1076,7 +1044,7 @@
       /**
        * Returns a list of PackageGroup instances used for documenting the
        * packages
  -     * 
  +     *
        * @return the list of PackageGroup instances
        */
       public List getPackageGroups()
  @@ -1103,8 +1071,8 @@
       public void addPackageGroup(PackageGroup packageGroup)
       {
           packageGroups.add(packageGroup);
  -    }    
  -    
  +    }
  +
       /**
        * Create a dom4j document from the POM. Used for dvsl processing right now.
        * Hopefully we can make this more general so that people
  
  
  

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

Reply via email to