MCPcopy Create free account
hub / github.com/ReadyTalk/avian / deflate

Method deflate

classpath/java/util/zip/ZipOutputStream.java:110–116  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

108 }
109
110 private void deflate() throws IOException {
111 int len = deflater.deflate(buffer, 0, buffer.length);
112 currentEntry.compSize += len;
113 bytesWritten += len;
114 if (len > 0)
115 out.write(buffer, 0, len);
116 }
117
118 private void writeLocalHeader(ZipEntry e) throws IOException {
119 byte[] tmpBuffer = new byte[30];

Callers 2

writeMethod · 0.95
finishMethod · 0.95

Calls 1

writeMethod · 0.65

Tested by

no test coverage detected