File tree 1 file changed +3
-3
lines changed
src/main/java/me/adrigamer2950/adriapi/api/inventory
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ public void openInventory() {
61
61
/**
62
62
* Setup items in the inventory or any other thing you may want to do
63
63
*/
64
- protected abstract void setupInventory ();
64
+ protected void setupInventory () { } ;
65
65
66
66
/**
67
67
* Executed when a player clicks in the inventory
@@ -71,12 +71,12 @@ public void openInventory() {
71
71
* is unnecessary as it is checked before executing this method
72
72
* in {@link InventoriesListener#onInvClick(InventoryClickEvent)}
73
73
*/
74
- public abstract void onInventoryClick (@ NotNull InventoryClickEvent e );
74
+ public void onInventoryClick (@ NotNull InventoryClickEvent e ) { } ;
75
75
76
76
/**
77
77
* @param e An {@link InventoryCloseEvent}
78
78
*/
79
- public abstract void onInventoryClose (@ NotNull InventoryCloseEvent e );
79
+ public void onInventoryClose (@ NotNull InventoryCloseEvent e ) { } ;
80
80
81
81
public static Builder builder () {
82
82
return new Builder ();
You can’t perform that action at this time.
0 commit comments