Skip to content

Commit 91c774f

Browse files
committed
warning fix
1 parent 8b43bc0 commit 91c774f

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/org/htmlunit/util/brotli/BitReader.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,8 @@ static int readFewBits(State s, int n) {
161161
static int readBits(State s, int n) {
162162
if (HALF_BITNESS >= 24) {
163163
return readFewBits(s, n);
164-
} else {
165-
return (n <= 16) ? readFewBits(s, n) : readManyBits(s, n);
166164
}
165+
return (n <= 16) ? readFewBits(s, n) : readManyBits(s, n);
167166
}
168167

169168
private static int readManyBits(State s, int n) {

0 commit comments

Comments
 (0)