8004643: Reduce javac space overhead introduced with compiler support for repeating annotations

Reviewed-by: mcimadamore, jfranck
This commit is contained in:
Jonathan Gibbons 2013-06-04 14:17:50 -07:00
parent aeb1c4b67e
commit bdfb93ee25
17 changed files with 218 additions and 108 deletions

View file

@ -403,7 +403,7 @@ public class DPrinter {
printType("type", sym.type, Details.SUMMARY);
printType("erasure", sym.erasure_field, Details.SUMMARY);
sym.accept(symVisitor, null);
printAnnotations("annotations", sym.annotations, Details.SUMMARY);
printAnnotations("annotations", sym.getAnnotations(), Details.SUMMARY);
indent(-1);
}
}