Lambda syntax sugar

This commit is contained in:
2023-01-21 10:54:51 -05:00
parent 663aafb4c8
commit 1ed51c8e02
+1 -5
View File
@@ -124,11 +124,7 @@ public class MagicBot extends ListenerAdapter {
ChatChannel.Init();
// Background thread to send Admin Events
Runnable adminLogRunnable = new Runnable() {
public void run() {
SendAdminLogUpdates();
}
};
Runnable adminLogRunnable = () -> SendAdminLogUpdates();
ScheduledExecutorService exec = Executors.newScheduledThreadPool(1);
exec.scheduleAtFixedRate(adminLogRunnable , 0, 1, TimeUnit.MINUTES);