From 6a965e108fe1748154463005bd98d703e40b8c25 Mon Sep 17 00:00:00 2001 From: aclement Date: Fri, 22 Jan 2010 22:52:21 +0000 Subject: [PATCH] 299552: private ITD fields stay private in target (with unmangled name): all of it --- tests/features152/synthetic/TheWholeShow.aj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/features152/synthetic/TheWholeShow.aj b/tests/features152/synthetic/TheWholeShow.aj index bd91561c7..263615456 100644 --- a/tests/features152/synthetic/TheWholeShow.aj +++ b/tests/features152/synthetic/TheWholeShow.aj @@ -11,7 +11,7 @@ public class TheWholeShow { public static void main(String[] args) { Field[] twsFields = TheWholeShow.class.getDeclaredFields(); for (Field f : twsFields) { - if (!f.getName().equals("f") && !f.getName().equals("x") && !f.getName().startsWith("ajc$interField$")) { + if (!f.getName().equals("f") && !f.getName().equals("x") && !f.getName().startsWith("y") && !f.getName().equals("z")) { if (!f.isSynthetic()) { System.err.println("Found non-synthetic field: " + f.getName()); throw new IllegalStateException("Found non-synthetic field: " + f.getName()); -- 2.39.5