[build] Change defaults for Java lints (#4300)

Removes the need to individually suppress the "serial" warning.
This commit is contained in:
Starlight220
2022-06-07 03:06:43 +03:00
committed by GitHub
parent a4787130f4
commit f2d243fa68
16 changed files with 12 additions and 21 deletions

View File

@@ -144,7 +144,7 @@ public class DataLogReader implements Iterable<DataLogRecord> {
int size = 0;
for (int i = 0; i < sizeLen; i++) {
size |= ((int) (m_buf.get(pos + 1 + entryLen + i) & 0xff)) << (i * 8);
size |= (m_buf.get(pos + 1 + entryLen + i) & 0xff) << (i * 8);
}
return pos + headerLen + size;
}