diff options
Diffstat (limited to 'tests/features152/synthetic/TheWholeShow.aj')
-rw-r--r-- | tests/features152/synthetic/TheWholeShow.aj | 1 |
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()); |