Removed useless accessibility keywords in Interfaces

This commit is contained in:
Florian CUNY 2018-01-01 00:43:32 +01:00
parent b03d4552fd
commit 5ea46aea29
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -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);
}