Skip to content

Commit

Permalink
Split up SamplePlayer.ANONYMOUS line
Browse files Browse the repository at this point in the history
  • Loading branch information
BBaoVanC committed Apr 6, 2023
1 parent 8701c2b commit 969c769
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,10 @@ public int hashCode() {
*/
public static final class SamplePlayer {

public static final SamplePlayer ANONYMOUS = new SamplePlayer("Anonymous Player", new UUID(0L, 0L));
public static final SamplePlayer ANONYMOUS = new SamplePlayer(
"Anonymous Player",
new UUID(0L, 0L),
);
private final String name;
private final UUID id;

Expand Down

0 comments on commit 969c769

Please sign in to comment.