(int token)
| 247 | } |
| 248 | |
| 249 | private void expectToken(int token) throws IOException { |
| 250 | int c = rawByte(); |
| 251 | if (c != token) { |
| 252 | throw new UnsupportedOperationException("Unexpected token: 0x" |
| 253 | + Integer.toHexString(c)); |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | private void field(Field field, Object o) |
| 258 | throws IOException, IllegalArgumentException, IllegalAccessException, |
no test coverage detected