mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-20 00:51:42 +00:00
[build] Change defaults for Java lints (#4300)
Removes the need to individually suppress the "serial" warning.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user