Skip to content

Commit

Permalink
GH-368 Fix Console Identifier (#368)
Browse files Browse the repository at this point in the history
  • Loading branch information
Rollczi authored Jan 26, 2024
1 parent 8a64cb7 commit c5c4345
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

public interface Identifier {

Identifier CONSOLE = of(Arrays.asList(new UUID(0, 0), 0, 0L));
Identifier CONSOLE = of(new UUID(0, 0), 0, 0L);

<T> Optional<T> getIdentifier(Class<T> type);

Expand Down

0 comments on commit c5c4345

Please sign in to comment.