()
| 346 | } |
| 347 | |
| 348 | int getByte() throws IOException { |
| 349 | int b = f.read(); |
| 350 | if (b ==-1) |
| 351 | throw new IOException("unexpected EOF"); |
| 352 | ++location; |
| 353 | return b; |
| 354 | } |
| 355 | |
| 356 | int getShort() throws IOException { |
| 357 | int b0 = getByte(); |
no test coverage detected