aboutsummaryrefslogtreecommitdiffstats
path: root/tests/new
diff options
context:
space:
mode:
authorjhugunin <jhugunin>2002-12-24 00:34:05 +0000
committerjhugunin <jhugunin>2002-12-24 00:34:05 +0000
commitd3156f737f3bb24e3ad695205da5977bef519275 (patch)
treeaa658fcfaa346c00ed97c732f106ab348f337646 /tests/new
parent7e28c28f4b09bacd1e0c0f7e7326fe68f5e6c7f6 (diff)
downloadaspectj-d3156f737f3bb24e3ad695205da5977bef519275.tar.gz
aspectj-d3156f737f3bb24e3ad695205da5977bef519275.zip
added coverage for exceptions thrown from intro methods
these tests were inspired by failures compiling observer example
Diffstat (limited to 'tests/new')
-rw-r--r--tests/new/runtime/AllRuntime.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/new/runtime/AllRuntime.java b/tests/new/runtime/AllRuntime.java
index cc7face15..47356aa1f 100644
--- a/tests/new/runtime/AllRuntime.java
+++ b/tests/new/runtime/AllRuntime.java
@@ -214,7 +214,7 @@ aspect A {
/** unused - enable to throw exception from run() */
public boolean TargetClass.throwException;
- public void TargetClass.run() throws Exception {
+ public void TargetClass.run() {
if (throwException) throwsException();
}