mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-27 02:01:42 +00:00
Remove unnecessary boxing (#7539)
* Remove unnecessary boxing Also remove unnecessary warning suppression * Use more idiomatic functional interfaces in NumericalIntegration
This commit is contained in:
@@ -48,7 +48,7 @@ public class EventVector {
|
||||
public void wakeup() {
|
||||
m_lock.lock();
|
||||
try {
|
||||
for (Integer eventHandle : m_events) {
|
||||
for (int eventHandle : m_events) {
|
||||
WPIUtilJNI.setEvent(eventHandle);
|
||||
}
|
||||
} finally {
|
||||
|
||||
Reference in New Issue
Block a user