Skip to content

Commit

Permalink
Linting
Browse files Browse the repository at this point in the history
  • Loading branch information
SamCarlberg committed Jun 20, 2024
1 parent ba88a2a commit aa0af6b
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,13 @@ public void load() throws IOException {
public void load(File saveFile) throws IOException {
var timer = Stopwatch.createStarted();
setDashboard(saveFileHandler.load(saveFile));
log.info("Loaded save file " + saveFile.getAbsolutePath() + " in " + timer.elapsed(TimeUnit.MILLISECONDS) + " milliseconds");
log.info(
"Loaded save file "
+ saveFile.getAbsolutePath()
+ " in "
+ timer.elapsed(TimeUnit.MILLISECONDS)
+ " milliseconds"
);
}

@FXML
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,12 @@ protected final void setTableListener(TableListener listener) {
}
});
} else {
multiSub = new MultiSubscriber(inst, new String[] {fullTableKey}, PubSubOption.hidden(false), PubSubOption.sendAll(true));
multiSub = new MultiSubscriber(
inst,
new String[] {fullTableKey},
PubSubOption.hidden(false),
PubSubOption.sendAll(true)
);
listenerUid = inst.addListener(
multiSub,
EnumSet.of(
Expand Down

0 comments on commit aa0af6b

Please sign in to comment.