sbailliez 02/01/26 11:33:35
Modified: src/main/org/apache/tools/ant/taskdefs Touch.java
Log:
Fix static access
Revision Changes Path
1.15 +2 -2
jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Touch.java
Index: Touch.java
===================================================================
RCS file:
/home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/Touch.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- Touch.java 10 Jan 2002 13:59:32 -0000 1.14
+++ Touch.java 26 Jan 2002 19:33:34 -0000 1.15
@@ -176,7 +176,7 @@
}
}
- if (millis >= 0 && project.getJavaVersion() == Project.JAVA_1_1) {
+ if (millis >= 0 && Project.getJavaVersion() == Project.JAVA_1_1) {
log("modification time of files cannot be set in JDK 1.1",
Project.MSG_WARN);
return;
@@ -220,7 +220,7 @@
throw new BuildException("Can not change modification date of
read-only file " + file);
}
- if (project.getJavaVersion() == Project.JAVA_1_1) {
+ if (Project.getJavaVersion() == Project.JAVA_1_1) {
return;
}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>