summaryrefslogtreecommitdiffstats
path: root/org.aspectj.ajdt.core
diff options
context:
space:
mode:
authoravasseur <avasseur>2005-05-17 08:29:18 +0000
committeravasseur <avasseur>2005-05-17 08:29:18 +0000
commit33c5c59a9e5ef8378f8695b905ceddf03f685c2b (patch)
tree8b500376a111312b405e1777feaeb026c1b82eb5 /org.aspectj.ajdt.core
parentbe5b8333d32e6efc02a73f4a83fbf10f1c5a9018 (diff)
downloadaspectj-33c5c59a9e5ef8378f8695b905ceddf03f685c2b.tar.gz
aspectj-33c5c59a9e5ef8378f8695b905ceddf03f685c2b.zip
aspects are reweavable by default, fixed issue in (AJC + LTW + Inlining + @AJ)
Diffstat (limited to 'org.aspectj.ajdt.core')
-rw-r--r--org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java
index 41bb20bc3..8e372c05e 100644
--- a/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java
+++ b/org.aspectj.ajdt.core/testsrc/org/aspectj/tools/ajc/AjcTestCase.java
@@ -576,7 +576,7 @@ public class AjcTestCase extends TestCase {
fail("main method in class " + className + " is not public");
} catch (InvocationTargetException invTgt) {
// the main method threw an exception...
- fail("Exception thrown by " + className + ".main(String[]) :" + invTgt.getTargetException());
+ fail("Exception thrown by " + className + ".main(String[]) :" + invTgt.getTargetException());
} finally {
System.setOut(systemOut);
System.setErr(systemErr);