donaldp     02/01/04 19:17:22

  Modified:    proposal/myrmidon/src/java/org/apache/antlib/cvslib
                        CVSPass.java
  Log:
  add in somee finals
  
  Revision  Changes    Path
  1.7       +4 -10     
jakarta-ant/proposal/myrmidon/src/java/org/apache/antlib/cvslib/CVSPass.java
  
  Index: CVSPass.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-ant/proposal/myrmidon/src/java/org/apache/antlib/cvslib/CVSPass.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- CVSPass.java      1 Jan 2002 06:16:24 -0000       1.6
  +++ CVSPass.java      5 Jan 2002 03:17:22 -0000       1.7
  @@ -21,7 +21,7 @@
    * CVSLogin Adds an new entry to a CVS password file
    *
    * @author <a href="[EMAIL PROTECTED]">Jeff Martin</a>
  - * @version $Revision: 1.6 $ $Date: 2002/01/01 06:16:24 $
  + * @version $Revision: 1.7 $ $Date: 2002/01/05 03:17:22 $
    */
   public class CVSPass
       extends AbstractTask
  @@ -72,30 +72,24 @@
   
       /**
        * Sets cvs root to be added to the password file
  -     *
  -     * @param cvsRoot The new Cvsroot value
        */
  -    public void setCvsroot( String cvsRoot )
  +    public void setCvsroot( final String cvsRoot )
       {
           m_cvsRoot = cvsRoot;
       }
   
       /**
        * Sets the password file attribute.
  -     *
  -     * @param passFile The new Passfile value
        */
  -    public void setPassfile( File passFile )
  +    public void setPassfile( final File passFile )
       {
           m_passwordFile = passFile;
       }
   
       /**
        * Sets the password attribute.
  -     *
  -     * @param password The new Password value
        */
  -    public void setPassword( String password )
  +    public void setPassword( final String password )
       {
           m_password = password;
       }
  
  
  

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

Reply via email to