mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-22 01:11:42 +00:00
Upgrade Maven dependencies (#5553)
The following source code changes were required: * Whitespace changes from spotless * PMD warning suppressions for utility class tests * PMD warning rename from "BeanMembersShouldSerialize" to "NonSerializableClass" * Declared more class members as final
This commit is contained in:
@@ -9,8 +9,8 @@ import java.util.List;
|
||||
import java.util.concurrent.locks.ReentrantLock;
|
||||
|
||||
public class EventVector {
|
||||
private ReentrantLock m_lock = new ReentrantLock();
|
||||
private List<Integer> m_events = new ArrayList<>();
|
||||
private final ReentrantLock m_lock = new ReentrantLock();
|
||||
private final List<Integer> m_events = new ArrayList<>();
|
||||
|
||||
/**
|
||||
* Adds an event to the event vector.
|
||||
|
||||
Reference in New Issue
Block a user