Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…6dbb9ac8cc88530144a65) happening when users in list are null (#6)
  • Loading branch information
fulminazzo authored Mar 7, 2024
1 parent 9ffc1a0 commit fb606aa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'net.simplyvanilla'
version = '0.1.0'
version = '0.1.1'

java {
toolchain.languageVersion.set(JavaLanguageVersion.of(17))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ public static User getUser(final UUID uniqueId) {
}

public static List<User> getUsers() {
USERS.removeIf(Objects::isNull);
return new LinkedList<>(USERS);
}

Expand Down

0 comments on commit fb606aa

Please sign in to comment.