Skip to content

Commit

Permalink
style fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Jul 24, 2024
1 parent 1a83816 commit 770be50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public float targetTickRate() {
return () -> {
try {
return (float) getTickRate.invoke(serverTickManager);
} catch (ReflectiveOperationException e) {
} catch (final ReflectiveOperationException e) {
throw new RuntimeException(e);
}
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
public final class SpongeTickInfoCommandFormatter implements TickInfoCommand.Formatter {
private final TabTPSPlatform<?, ?> platform;

public SpongeTickInfoCommandFormatter(TabTPSPlatform<?, ?> platform) {
public SpongeTickInfoCommandFormatter(final TabTPSPlatform<?, ?> platform) {
this.platform = platform;
}

Expand Down

0 comments on commit 770be50

Please sign in to comment.