summaryrefslogtreecommitdiffstats
path: root/tests/features152
diff options
context:
space:
mode:
authoraclement <aclement>2006-06-28 09:16:01 +0000
committeraclement <aclement>2006-06-28 09:16:01 +0000
commit21e06a69892469bab688d2315e7e034047431082 (patch)
tree2220f50d7955df66d7ee3e5cb0d32ba3eeaeadf9 /tests/features152
parentb59b036af89c28616efeda9b4cef1043c34337d6 (diff)
downloadaspectj-21e06a69892469bab688d2315e7e034047431082.tar.gz
aspectj-21e06a69892469bab688d2315e7e034047431082.zip
test and fix for 148727 - reverse synthetic changes for aspectOf() and hasAspect()
Diffstat (limited to 'tests/features152')
-rw-r--r--tests/features152/synthetic/TheWholeShow.aj1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/features152/synthetic/TheWholeShow.aj b/tests/features152/synthetic/TheWholeShow.aj
index d1e032e8b..7045c8192 100644
--- a/tests/features152/synthetic/TheWholeShow.aj
+++ b/tests/features152/synthetic/TheWholeShow.aj
@@ -58,6 +58,7 @@ public class TheWholeShow {
for (Method m : ms) {
if (!m.isSynthetic()) {
String name = m.getName();
+ if (name.equals("aspectOf") || name.equals("hasAspect")) continue;
if ( ! (name.startsWith("ajc$before") || name.startsWith("ajc$after") || name.startsWith("ajc$around") ||
name.startsWith("ajc$interMethod$"))) {
System.err.println("Found non-synthetic method: " + m.getName() + " in " + c.getName());