Skip to content

Commit 24a7f35

Browse files
committedFeb 22, 2025·
feat: Make Inventory#setupInventory, Inventory#onInventoryClick and Inventory#onInventoryClose not abstract
1 parent ae545c0 commit 24a7f35

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/main/java/me/adrigamer2950/adriapi/api/inventory/Inventory.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public void openInventory() {
6161
/**
6262
* Setup items in the inventory or any other thing you may want to do
6363
*/
64-
protected abstract void setupInventory();
64+
protected void setupInventory() { };
6565

6666
/**
6767
* Executed when a player clicks in the inventory
@@ -71,12 +71,12 @@ public void openInventory() {
7171
* is unnecessary as it is checked before executing this method
7272
* in {@link InventoriesListener#onInvClick(InventoryClickEvent)}
7373
*/
74-
public abstract void onInventoryClick(@NotNull InventoryClickEvent e);
74+
public void onInventoryClick(@NotNull InventoryClickEvent e) { };
7575

7676
/**
7777
* @param e An {@link InventoryCloseEvent}
7878
*/
79-
public abstract void onInventoryClose(@NotNull InventoryCloseEvent e);
79+
public void onInventoryClose(@NotNull InventoryCloseEvent e) { };
8080

8181
public static Builder builder() {
8282
return new Builder();

0 commit comments

Comments
 (0)