diff -r 8f282dc58dfc -r aa6c6f8b5622 test/tools/javac/tree/SourceTreeScannerTest.java --- a/test/tools/javac/tree/SourceTreeScannerTest.java Sat Aug 10 16:26:50 2013 +0100 +++ b/test/tools/javac/tree/SourceTreeScannerTest.java Sat Aug 10 16:29:26 2013 +0100 @@ -140,13 +140,6 @@ // not part of public API continue; } - if (JCTree.JCNewArray.class.isAssignableFrom(tree.getClass()) - && (f.getName().equals("annotations") - || f.getName().equals("dimAnnotations"))) { - // these fields are incorrectly missing from the public API - // (CR 6983297) - continue; - } try { //System.err.println("FIELD: " + f.getName()); reflectiveScan(f.get(tree));