dion        02/04/14 15:16:13

  Modified:    src/java/org/apache/maven/cvslib ChangeLogEntry.java
                        ChangeLogFile.java
  Log:
  Removed getPreviousRev method
  
  Revision  Changes    Path
  1.9       +3 -3      
jakarta-turbine-maven/src/java/org/apache/maven/cvslib/ChangeLogEntry.java
  
  Index: ChangeLogEntry.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/cvslib/ChangeLogEntry.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- ChangeLogEntry.java       8 Apr 2002 08:15:13 -0000       1.8
  +++ ChangeLogEntry.java       14 Apr 2002 22:16:13 -0000      1.9
  @@ -64,7 +64,7 @@
    * CVS Change Log Entry - holds details about revisions to a file.
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>dIon Gillard</a>
  - * @version $Id: ChangeLogEntry.java,v 1.8 2002/04/08 08:15:13 dion Exp $
  + * @version $Id: ChangeLogEntry.java,v 1.9 2002/04/14 22:16:13 dion Exp $
    */
   public class ChangeLogEntry
   {
  @@ -167,10 +167,10 @@
                   .append("\t\t\t<revision>")
                   .append(file.getRevision())
                   .append("</revision>\n");
  -            if (file.getPreviousRev() != null)
  +            if (file.getPreviousRevision() != null)
               {
                   buffer.append("\t\t\t<prevrevision>")
  -                    .append(file.getPreviousRev())
  +                    .append(file.getPreviousRevision())
                       .append("</prevrevision>\n");
               }
               buffer.append("\t\t</file>\n");
  
  
  
  1.7       +1 -10     
jakarta-turbine-maven/src/java/org/apache/maven/cvslib/ChangeLogFile.java
  
  Index: ChangeLogFile.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/cvslib/ChangeLogFile.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- ChangeLogFile.java        14 Apr 2002 15:04:51 -0000      1.6
  +++ ChangeLogFile.java        14 Apr 2002 22:16:13 -0000      1.7
  @@ -58,7 +58,7 @@
    * A set of information about revisions of a file as returned by CVS's log
    * command
    * @author <a href="mailto:[EMAIL PROTECTED]";>dIon Gillard</a>
  - * @version $Id: ChangeLogFile.java,v 1.6 2002/04/14 15:04:51 dion Exp $
  + * @version $Id: ChangeLogFile.java,v 1.7 2002/04/14 22:16:13 dion Exp $
    */
   public class ChangeLogFile
   {
  @@ -121,15 +121,6 @@
           return revision;
       }
   
  -    /**
  -     * Gets the previousRev attribute of the ChangeLogFile object.
  -     * @return the next to latest revision of the file
  -     */
  -    public String getPreviousRev()
  -    {
  -        return previousRevision;
  -    }
  -    
       /**
        * Setter for property name.
        * @param name New value of property name.
  
  
  


Reply via email to