6886348: apt incorrectly uses Scope.table

Reviewed-by: darcy
This commit is contained in:
Jonathan Gibbons 2009-09-28 16:48:30 -07:00
parent 2fa89790cc
commit 9caa2fcaf2

View File

@ -201,7 +201,7 @@ public class Apt extends ListBuffer<Env<AttrContext>> {
computeAnnotationSet(param, annotationSet);
if (symbol.members() != null) {
for(Scope.Entry e: symbol.members().table)
for(Scope.Entry e = symbol.members().elems; e != null; e = e.sibling)
computeAnnotationSet(e.sym, annotationSet);
}
}