mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-22 02:35:21 +01:00
Removed useless accessibility keywords in Interfaces
This commit is contained in:
parent
b03d4552fd
commit
5ea46aea29
@ -90,6 +90,6 @@ public class PanelItem {
|
||||
* @param click
|
||||
* @return false if the event should be cancelled
|
||||
*/
|
||||
public boolean onClick(User user, ClickType click);
|
||||
boolean onClick(User user, ClickType click);
|
||||
}
|
||||
}
|
||||
|
@ -10,7 +10,7 @@ public interface PanelListener {
|
||||
/**
|
||||
* This is called when the panel is first setup
|
||||
*/
|
||||
public void setup();
|
||||
void setup();
|
||||
|
||||
/**
|
||||
* Called when the panel is clicked
|
||||
@ -18,5 +18,5 @@ public interface PanelListener {
|
||||
* @param inventory
|
||||
* @param clicked
|
||||
*/
|
||||
public void onInventoryClick(User user, Inventory inventory, ItemStack clicked);
|
||||
void onInventoryClick(User user, Inventory inventory, ItemStack clicked);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user