dion        02/04/14 19:07:05

  Modified:    src/java/org/apache/maven/cvslib ChangeLogParser.java
  Log:
  Made state machine accessor methods internal
  
  Revision  Changes    Path
  1.10      +5 -5      
jakarta-turbine-maven/src/java/org/apache/maven/cvslib/ChangeLogParser.java
  
  Index: ChangeLogParser.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-turbine-maven/src/java/org/apache/maven/cvslib/ChangeLogParser.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- ChangeLogParser.java      8 Apr 2002 22:49:11 -0000       1.9
  +++ ChangeLogParser.java      15 Apr 2002 02:07:05 -0000      1.10
  @@ -67,7 +67,7 @@
    * A class to parse cvs log output
    *
    * @author <a href="mailto:[EMAIL PROTECTED]";>dIon Gillard</a>
  - * @version $Id: ChangeLogParser.java,v 1.9 2002/04/08 22:49:11 dion Exp $
  + * @version $Id: ChangeLogParser.java,v 1.10 2002/04/15 02:07:05 dion Exp $
    */
   public class ChangeLogParser 
   {
  @@ -272,7 +272,7 @@
        * Getter for property currentFile.
        * @return Value of property currentFile.
        */
  -    public ChangeLogFile getCurrentFile()
  +    private ChangeLogFile getCurrentFile()
       {
           return currentFile;
       }
  @@ -281,7 +281,7 @@
        * Setter for property currentFile.
        * @param currentFile New value of property currentFile.
        */
  -    public void setCurrentFile(ChangeLogFile currentFile)
  +    private void setCurrentFile(ChangeLogFile currentFile)
       {
           this.currentFile = currentFile;
       }
  @@ -290,7 +290,7 @@
        * Getter for property currentLogEntry.
        * @return Value of property currentLogEntry.
        */
  -    public ChangeLogEntry getCurrentLogEntry()
  +    private ChangeLogEntry getCurrentLogEntry()
       {
           return currentLogEntry;
       }
  @@ -299,7 +299,7 @@
        * Setter for property currentLogEntry.
        * @param currentLogEntry New value of property currentLogEntry.
        */
  -    public void setCurrentLogEntry(ChangeLogEntry currentLogEntry)
  +    private void setCurrentLogEntry(ChangeLogEntry currentLogEntry)
       {
           this.currentLogEntry = currentLogEntry;
       }
  
  
  


Reply via email to