Skip to content

Commit

Permalink
adding a bunch of nullability annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
FireInstall committed Jul 31, 2024
1 parent 071c4f5 commit 554c16f
Show file tree
Hide file tree
Showing 381 changed files with 1,954 additions and 2,309 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,8 @@ docs/build/
/buildSrc/.gradle/
/.gradle/
/build/
/buildSrc/build/
/buildSrc/build/
/Minigames/run/
/Minigames/build/
/Regions/run/
/Regions/build/

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void onPlayerResourcePack(@NotNull PlayerResourcePackStatusEvent event) {
}

@EventHandler(priority = EventPriority.LOWEST)
private void onPlayerDeath(PlayerDeathEvent event) {
private void onPlayerDeath(@NotNull PlayerDeathEvent event) {
final MinigamePlayer mgPlayer = pdata.getMinigamePlayer(event.getEntity().getPlayer());
if (mgPlayer.isInMinigame()) {
Minigame mgm = mgPlayer.getMinigame();
Expand Down
Loading

0 comments on commit 554c16f

Please sign in to comment.