diff options
author | aclement <aclement> | 2006-10-18 14:46:29 +0000 |
---|---|---|
committer | aclement <aclement> | 2006-10-18 14:46:29 +0000 |
commit | db68044fe8ea0f43a5e090a67b9410f4c334bff6 (patch) | |
tree | 02010767f1a7500610a58abfe41e71c6539ea6f5 /tests/features152 | |
parent | 1a2eef067f87e9037bd39f20d4c682c642689de8 (diff) | |
download | aspectj-db68044fe8ea0f43a5e090a67b9410f4c334bff6.tar.gz aspectj-db68044fe8ea0f43a5e090a67b9410f4c334bff6.zip |
test and fix for 123423: getWithinTypeName() for ptw aspects
Diffstat (limited to 'tests/features152')
-rw-r--r-- | tests/features152/synthetic/TheWholeShow.aj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/features152/synthetic/TheWholeShow.aj b/tests/features152/synthetic/TheWholeShow.aj index 7045c8192..0fa1c6642 100644 --- a/tests/features152/synthetic/TheWholeShow.aj +++ b/tests/features152/synthetic/TheWholeShow.aj @@ -58,7 +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.equals("aspectOf") || name.equals("hasAspect") || name.equals("getWithinTypeName")) 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()); |