(ClassLoader loader,
Object pool,
InputStream in)
| 160 | } |
| 161 | |
| 162 | private static Object[] parseAnnotationTable(ClassLoader loader, |
| 163 | Object pool, |
| 164 | InputStream in) |
| 165 | throws IOException |
| 166 | { |
| 167 | Object[] table = new Object[read2(in)]; |
| 168 | for (int i = 0; i < table.length; ++i) { |
| 169 | table[i] = parseAnnotation(loader, pool, in); |
| 170 | } |
| 171 | return table; |
| 172 | } |
| 173 | |
| 174 | private static void parseAnnotationTable(ClassLoader loader, |
| 175 | Addendum addendum) |
no test coverage detected