()
| 210 | } |
| 211 | |
| 212 | private void readDataDescr() throws IOException |
| 213 | { |
| 214 | if (readLeInt() != EXTSIG) |
| 215 | throw new ZipException("Data descriptor signature not found"); |
| 216 | entry.setCrc(readLeInt() & 0xffffffffL); |
| 217 | csize = readLeInt(); |
| 218 | size = readLeInt(); |
| 219 | entry.setSize(size & 0xffffffffL); |
| 220 | entry.setCompressedSize(csize & 0xffffffffL); |
| 221 | } |
| 222 | |
| 223 | /** |
| 224 | * Closes the current zip entry and moves to the next one. |
no test coverage detected