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

Method setExtra

src/gnu/zip/ZipEntry.java:328–338  ·  view source on GitHub ↗

Sets the extra data. @exception IllegalArgumentException if extra is longer than 0xffff bytes.

(byte[] extra)

Source from the content-addressed store, hash-verified

326 * @exception IllegalArgumentException if extra is longer than 0xffff bytes.
327 */
328 public void setExtra(byte[] extra)
329 {
330 if (extra == null)
331 {
332 this.extra = null;
333 return;
334 }
335 if (extra.length > 0xffff)
336 throw new IllegalArgumentException();
337 this.extra = extra;
338 }
339
340 private void parseExtra()
341 {

Callers 2

readEntriesMethod · 0.95
getNextEntryMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected