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
Turns out I screwed up the brotli removal quite badly in #6778. There are 2 issues:
BrotliAbsentBooleanSupplier checks for the presence of BrotliInputStream. Which is a bit silly given that class is being generated at build time.
BrotliAbsentBooleanSupplier
BrotliInputStream
The generated BrotliInputStream class recursively invokes its own constructor. It needs to invoke the super class InputStream constructor.
InputStream
The text was updated successfully, but these errors were encountered:
Fix generated BrotliInputStream constructor
ccec32c
Fixes apache#6896
cb765cb
jamesnetherton
No branches or pull requests
Bug description
Turns out I screwed up the brotli removal quite badly in #6778. There are 2 issues:
BrotliAbsentBooleanSupplier
checks for the presence ofBrotliInputStream
. Which is a bit silly given that class is being generated at build time.The generated
BrotliInputStream
class recursively invokes its own constructor. It needs to invoke the super classInputStream
constructor.The text was updated successfully, but these errors were encountered: