MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / getCrc

Method getCrc

src/gnu/zip/ZipEntry.java:295–298  ·  view source on GitHub ↗

Gets the crc of the uncompressed data. @return the crc or -1 if unknown.

()

Source from the content-addressed store, hash-verified

293 * @return the crc or -1 if unknown.
294 */
295 public long getCrc()
296 {
297 return (known & KNOWN_CRC) != 0 ? crc & 0xffffffffL : -1L;
298 }
299
300 /**
301 * Sets the compression method. Only DEFLATED and STORED are

Callers 1

readMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected