peterreilly 2004/12/17 02:20:41
Modified: src/main/org/apache/tools/ant/taskdefs/optional/vss Tag:
ANT_16_BRANCH MSVSS.java
Log:
sync
Revision Changes Path
No revision
No revision
1.34.2.8 +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.34.2.7
retrieving revision 1.34.2.8
diff -u -r1.34.2.7 -r1.34.2.8
--- MSVSS.java 16 Dec 2004 09:50:34 -0000 1.34.2.7
+++ MSVSS.java 17 Dec 2004 10:20:40 -0000 1.34.2.8
@@ -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]