diff options
author | mwebster <mwebster> | 2006-10-05 10:13:54 +0000 |
---|---|---|
committer | mwebster <mwebster> | 2006-10-05 10:13:54 +0000 |
commit | c315f9d9a754d01ea608d6d1ae020889d4018fc6 (patch) | |
tree | f64fe7729bbe5e5dc2f8bfd6ecfccecd10118a89 /tests/bugs153/pr158957/Tracing.aj | |
parent | 3ebee688f8dab9c114ca61b685b324c19640ae9b (diff) | |
download | aspectj-c315f9d9a754d01ea608d6d1ae020889d4018fc6.tar.gz aspectj-c315f9d9a754d01ea608d6d1ae020889d4018fc6.zip |
Bug 158957 "NPE in LTW with RMI dynamic proxies w/ pointcut reuse" (restore catch(Throwable) in Aj.preProcess() and make adaptor disabled by default)
Diffstat (limited to 'tests/bugs153/pr158957/Tracing.aj')
-rw-r--r-- | tests/bugs153/pr158957/Tracing.aj | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/bugs153/pr158957/Tracing.aj b/tests/bugs153/pr158957/Tracing.aj new file mode 100644 index 000000000..5a974ad2e --- /dev/null +++ b/tests/bugs153/pr158957/Tracing.aj @@ -0,0 +1,6 @@ +public aspect Tracing { + + before () : PointcutLibrary.println() { + System.out.println("? " + thisJoinPointStaticPart.getSignature().getName()); + } +}
\ No newline at end of file |