(ZipEntry ze)
| 232 | } |
| 233 | |
| 234 | public InputStream getRawInputStream(ZipEntry ze) { |
| 235 | return new BridgeInputStream(archive, ze.getDataOffset(), ze.getCompressedSize()); |
| 236 | } |
| 237 | |
| 238 | public InputStream getInputStream(ZipEntry ze) throws IOException { |
| 239 | long start = ze.getDataOffset(); |
no test coverage detected