Browse Source

add in somee finals

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270522 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
65256f43dc
1 changed files with 3 additions and 9 deletions
  1. +3
    -9
      proposal/myrmidon/src/java/org/apache/antlib/cvslib/CVSPass.java

+ 3
- 9
proposal/myrmidon/src/java/org/apache/antlib/cvslib/CVSPass.java View File

@@ -72,30 +72,24 @@ public class CVSPass

/**
* 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;
}


Loading…
Cancel
Save