Enable PMD rule UnnecessaryModifier and fix violations

This commit is contained in:
Manuel Fuhr 2022-11-13 16:04:56 +01:00
parent b68f1587b2
commit 5f942cc458
6 changed files with 19 additions and 20 deletions

View file

@ -59,7 +59,7 @@ public final class MixCoderDataOutputStream extends DataOutputStream {
}
}
public final void encodeBit(boolean value) throws IOException {
public void encodeBit(boolean value) throws IOException {
if (bm == 0x100) {
writeByte((byte) b);
bm = 1;
@ -71,7 +71,7 @@ public final class MixCoderDataOutputStream extends DataOutputStream {
bm <<= 1;
}
public final void encodeVarBits(int value) throws IOException {
public void encodeVarBits(int value) throws IOException {
int range = 0;
while (value > range) {
encodeBit(false);
@ -82,7 +82,7 @@ public final class MixCoderDataOutputStream extends DataOutputStream {
encodeBounded(range, value);
}
public final void encodeBounded(int max, int value) throws IOException {
public void encodeBounded(int max, int value) throws IOException {
int im = 1; // integer mask
while (im <= max) {
if (bm == 0x100) {