diff options
author | acolyer <acolyer> | 2005-11-24 09:01:22 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2005-11-24 09:01:22 +0000 |
commit | 96ff35e46ffd3ecf9f437465629e2ec1140c9267 (patch) | |
tree | cc8406d4d9853fb85ceee377451391dfec95d55c | |
parent | 1fb3856f56027e9921f73c5c1ff5f2d187b2f276 (diff) | |
download | aspectj-96ff35e46ffd3ecf9f437465629e2ec1140c9267.tar.gz aspectj-96ff35e46ffd3ecf9f437465629e2ec1140c9267.zip |
test against output dir location was unreliable on mac os x, now fixed
-rw-r--r-- | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/core/builder/AjState.java | 1 |
1 files changed, 1 insertions, 0 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 b4388b289..6a7b7dabb 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 @@ -265,6 +265,7 @@ public class AjState { private boolean changed(List oldPath, List newPath, boolean checkClassFiles, File oldOutputLocation) { if (oldPath == null) oldPath = new ArrayList(); if (newPath == null) newPath = new ArrayList(); + try {oldOutputLocation = oldOutputLocation.getCanonicalFile();} catch(IOException ex) { /* we did our best...*/ } if (oldPath.size() != newPath.size()) { return true; } |