Fix parsing of recursive annotations

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
This commit is contained in:
Johannes Schindelin 2013-11-26 14:15:16 -06:00
parent 6c57bd9174
commit e1d91f153b

View File

@ -117,7 +117,7 @@ public class Classes {
}
case '@':
return parseAnnotation(loader, pool, in);
return getAnnotation(loader, parseAnnotation(loader, pool, in));
case '[': {
Object[] array = new Object[read2(in)];