mirror of
https://github.com/bisq-network/bisq.git
synced 2024-11-19 09:52:23 +01:00
Remove not needed stream()
This commit is contained in:
parent
94bc2359ed
commit
4c7f6147e9
@ -35,7 +35,7 @@ public class MasterTimer {
|
||||
timer.scheduleAtFixedRate(new TimerTask() {
|
||||
@Override
|
||||
public void run() {
|
||||
UserThread.execute(() -> listeners.stream().forEach(Runnable::run));
|
||||
UserThread.execute(() -> listeners.forEach(Runnable::run));
|
||||
}
|
||||
}, FRAME_INTERVAL_MS, FRAME_INTERVAL_MS);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user