diff options
author | acolyer <acolyer> | 2004-03-15 19:54:05 +0000 |
---|---|---|
committer | acolyer <acolyer> | 2004-03-15 19:54:05 +0000 |
commit | 1f7d28f480f7f8c5e0316688a4f95abb62e7b747 (patch) | |
tree | e6c4a33e4ecb6e5263b865ca9b20e2c4074b8743 /org.aspectj.ajdt.core | |
parent | 01095341153b24fcf5ab5f537ecc77077819b1f1 (diff) | |
download | aspectj-1f7d28f480f7f8c5e0316688a4f95abb62e7b747.tar.gz aspectj-1f7d28f480f7f8c5e0316688a4f95abb62e7b747.zip |
guess who used a 1.4 only API then.....
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r-- | org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java index ab3cebdb2..d679d12b9 100644 --- a/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java +++ b/org.aspectj.ajdt.core/src/org/aspectj/ajdt/internal/compiler/AjCompilerAdapter.java @@ -107,8 +107,7 @@ public class AjCompilerAdapter implements ICompilerAdapter { weave(); // notification happens as weave progresses... } } catch (IOException ex) { - AbortCompilation ac = new AbortCompilation(); - ac.initCause(ex); + AbortCompilation ac = new AbortCompilation(null,ex); throw ac; } } @@ -148,8 +147,7 @@ public class AjCompilerAdapter implements ICompilerAdapter { try { weave(); } catch (IOException ex) { - AbortCompilation ac = new AbortCompilation(); - ac.initCause(ex); + AbortCompilation ac = new AbortCompilation(null,ex); throw ac; } } |