Small Interface code cleanup
Dieser Commit ist enthalten in:
Ursprung
42e2dbcfac
Commit
0361e81619
@ -3,6 +3,5 @@ package de.steamwar.inventory;
|
||||
import org.bukkit.event.inventory.ClickType;
|
||||
|
||||
public interface InvCallback {
|
||||
|
||||
public void clicked(ClickType click);
|
||||
void clicked(ClickType click);
|
||||
}
|
||||
|
@ -70,7 +70,7 @@ public class SWListInv<T> extends SWInventory {
|
||||
}
|
||||
|
||||
public interface ListCallback<T>{
|
||||
public void clicked(ClickType click, T element);
|
||||
void clicked(ClickType click, T element);
|
||||
}
|
||||
|
||||
public static List<Pair<SWItem, UUID>> createPlayerList(Player without){
|
||||
|
In neuem Issue referenzieren
Einen Benutzer sperren