mirror of
https://github.com/exituser/Brewery.git
synced 2026-09-17 08:59:01 +00:00
Use Java 7 Language Level
This commit is contained in:
@@ -17,7 +17,7 @@ import static de.diddiz.util.BukkitUtils.compressInventory;
|
||||
import static de.diddiz.util.BukkitUtils.rawData;
|
||||
|
||||
public class LogBlockBarrel {
|
||||
private static final List<LogBlockBarrel> opened = new ArrayList<LogBlockBarrel>();
|
||||
private static final List<LogBlockBarrel> opened = new ArrayList<>();
|
||||
public static Consumer consumer = LogBlock.getInstance().getConsumer();
|
||||
|
||||
private HumanEntity player;
|
||||
|
||||
@@ -5,5 +5,5 @@ import org.bukkit.entity.Player;
|
||||
import org.bukkit.plugin.Plugin;
|
||||
|
||||
public interface WGBarrel {
|
||||
public abstract boolean checkAccess(Player player, Block spigot, Plugin plugin);
|
||||
boolean checkAccess(Player player, Block spigot, Plugin plugin);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user