Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCarlberg committed Oct 26, 2024
1 parent de08b0d commit dcea59f
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public final class FxUtils {
private static final Object FX_CONTROLLER_KEY = new Object();

private static final ScheduledExecutorService laterScheduler =
Executors.newSingleThreadScheduledExecutor((runnable) -> {
Executors.newSingleThreadScheduledExecutor(runnable -> {
var thread = new Thread(runnable);
thread.setDaemon(true);
thread.setName("Shuffleboard Run Later Scheduler");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
import edu.wpi.first.networktables.PubSubOption;

import java.util.Arrays;
import java.util.Comparator;
import java.util.EnumSet;
import java.util.Map;
import java.util.Optional;
Expand Down

0 comments on commit dcea59f

Please sign in to comment.