peterreilly    2004/12/17 02:19:20

  Modified:    src/main/org/apache/tools/ant/taskdefs/optional/vss
                        MSVSS.java
  Log:
  opps: shadow setting due to renaming
  
  Revision  Changes    Path
  1.42      +3 -3      
ant/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSS.java
  
  Index: MSVSS.java
  ===================================================================
  RCS file: 
/home/cvs/ant/src/main/org/apache/tools/ant/taskdefs/optional/vss/MSVSS.java,v
  retrieving revision 1.41
  retrieving revision 1.42
  diff -u -r1.41 -r1.42
  --- MSVSS.java        16 Dec 2004 09:50:08 -0000      1.41
  +++ MSVSS.java        17 Dec 2004 10:19:20 -0000      1.42
  @@ -134,7 +134,7 @@
        * @param  vssPath  The VSS project path.
        * @ant.attribute group="required"
        */
  -    public final void setVsspath(String vssPath) {
  +    public final void setVsspath(final String vssPath) {
           String projectPath;
           if (vssPath.startsWith("vss://")) { //$NON-NLS-1$
               projectPath = vssPath.substring(5);
  @@ -143,9 +143,9 @@
           }
   
           if (projectPath.startsWith(PROJECT_PREFIX)) {
  -            vssPath = projectPath;
  +            this.vssPath = projectPath;
           } else {
  -            vssPath = PROJECT_PREFIX + projectPath;
  +            this.vssPath = PROJECT_PREFIX + projectPath;
           }
       }
   
  
  
  

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

Reply via email to