Skip to content
This repository has been archived by the owner on Jan 13, 2024. It is now read-only.

Commit

Permalink
Remove newline between Lombok annotation and field
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangerCoug committed Oct 8, 2023
1 parent 99a6669 commit ca953c8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,7 @@
public class Player {
private final String name;
private final boolean isHuman;
@EqualsAndHashCode.Exclude
private BigDecimal funds;
@EqualsAndHashCode.Exclude private BigDecimal funds;
private static final String DEFAULT_NAME = "Anonymous";
private static final BigDecimal DEFAULT_STARTING_FUNDS = new BigDecimal(1000, MathContext.DECIMAL64);

Expand Down

0 comments on commit ca953c8

Please sign in to comment.