mirror of
https://github.com/openjdk/jdk.git
synced 2026-02-09 01:48:34 +00:00
6886348: apt incorrectly uses Scope.table
Reviewed-by: darcy
This commit is contained in:
parent
2fa89790cc
commit
9caa2fcaf2
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user