()
| 450 | return new InflaterInputStream(inp, inf) |
| 451 | { |
| 452 | public int available() throws IOException |
| 453 | { |
| 454 | if (sz == -1) |
| 455 | return super.available(); |
| 456 | if (super.available() != 0) |
| 457 | return sz - inf.getTotalOut(); |
| 458 | return 0; |
| 459 | } |
| 460 | }; |
| 461 | default: |
| 462 | throw new ZipException("Unknown compression method " + method); |
nothing calls this directly
no test coverage detected