We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b43bc0 commit 91c774fCopy full SHA for 91c774f
src/main/java/org/htmlunit/util/brotli/BitReader.java
@@ -161,9 +161,8 @@ static int readFewBits(State s, int n) {
161
static int readBits(State s, int n) {
162
if (HALF_BITNESS >= 24) {
163
return readFewBits(s, n);
164
- } else {
165
- return (n <= 16) ? readFewBits(s, n) : readManyBits(s, n);
166
}
+ return (n <= 16) ? readFewBits(s, n) : readManyBits(s, n);
167
168
169
private static int readManyBits(State s, int n) {
0 commit comments