MCPcopy Index your code
hub / github.com/google/brotli / destroy

Method destroy

java/org/brotli/wrapper/dec/DecoderJNI.java:118–124  ·  view source on GitHub ↗

Releases native resources.

()

Source from the content-addressed store, hash-verified

116 * Releases native resources.
117 */
118 public void destroy() {
119 if (context[0] == 0) {
120 throw new IllegalStateException("brotli decoder is already destroyed");
121 }
122 nativeDestroy(context);
123 context[0] = 0;
124 }
125 }
126}

Callers 2

decompressMethod · 0.95
closeMethod · 0.45

Calls 1

nativeDestroyMethod · 0.45

Tested by

no test coverage detected