Skip to content

Commit

Permalink
the getters will always be not null
Browse files Browse the repository at this point in the history
  • Loading branch information
ryderbelserion committed Sep 18, 2024
1 parent 3c88fdd commit 75999df
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions paper/src/main/java/com/badbones69/crazycrates/CrazyCrates.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,15 +151,15 @@ public void onDisable() {
}
}

public @NotNull final InventoryManager getInventoryManager() {
public final InventoryManager getInventoryManager() {
return this.inventoryManager;
}

public @NotNull final BukkitUserManager getUserManager() {
public final BukkitUserManager getUserManager() {
return this.userManager;
}

public @NotNull final CrateManager getCrateManager() {
public final CrateManager getCrateManager() {
return this.crateManager;
}

Expand All @@ -171,11 +171,11 @@ public void onDisable() {
return this.api;
}

public @NotNull final Server getInstance() {
public final Server getInstance() {
return this.instance;
}

public @NotNull final Timer getTimer() {
public final Timer getTimer() {
return this.timer;
}
}

0 comments on commit 75999df

Please sign in to comment.