aboutsummaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core
diff options
context:
space:
mode:
authoraclement <aclement>2005-04-28 09:56:10 +0000
committeraclement <aclement>2005-04-28 09:56:10 +0000
commit73f725313c7e12c8c57ed357dbc3ab8cc9abe18f (patch)
tree5750dd2c8a8fe6fd608680633ebf710d90997ca9 /org.aspectj.ajdt.core
parente3678e3e1e2f059e383be5c99905bf70ad88d1a3 (diff)
downloadaspectj-73f725313c7e12c8c57ed357dbc3ab8cc9abe18f.tar.gz
aspectj-73f725313c7e12c8c57ed357dbc3ab8cc9abe18f.zip
Fix for timing problem in multiincrementalproject tests.
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r--org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java
index 97d85e4a0..b4388b289 100644
--- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java
+++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java
@@ -165,9 +165,9 @@ public class AjState {
if (!file.exists()) continue;
long modTime = file.lastModified();
- //System.out.println("check: " + file + " mod " + modTime + " build " + lastBuildTime);
+ // System.out.println("check: " + file + " mod " + modTime + " build " + lastBuildTime);
// need to add 1000 since lastModTime is only accurate to a second on some (all?) platforms
- if (modTime + 1000 >= lastBuildTime) {
+ if (modTime + 1000 > lastBuildTime) {
ret.add(file);
}
}