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 Jun 10, 2023
1 parent 4fbdbad commit 9a68b65
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 9a68b65

Please sign in to comment.