MCPcopy Index your code
hub / github.com/dumbledore/AlbiteREADER / readDataDescr

Method readDataDescr

src/gnu/zip/ZipInputStream.java:212–221  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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.

Callers 1

readMethod · 0.95

Calls 4

readLeIntMethod · 0.95
setCrcMethod · 0.80
setSizeMethod · 0.80
setCompressedSizeMethod · 0.80

Tested by

no test coverage detected