We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A declaration like:
public static final HuffmanDecoder DECODER = new HuffmanDecoder(HUFFMAN_CODES, HUFFMAN_CODE_LENGTHS);
...apparently results in the HuffmanDecoder type being necessary to consume the static field:
HuffmanDecoder
.../Decoder.java:536: error: cannot access HuffmanDecoder result = Huffman.DECODER.decode(buf);
...but it is not currently exported.
The text was updated successfully, but these errors were encountered:
This represented roughly 2.5% of the issues in akka-http.
akka-http
Sorry, something went wrong.
No branches or pull requests
A declaration like:
...apparently results in the
HuffmanDecoder
type being necessary to consume the static field:...but it is not currently exported.
The text was updated successfully, but these errors were encountered: