Add public to the ChestAccess variables

This commit is contained in:
Paul-Maxime
2019-08-10 00:24:27 +02:00
parent 6f4ce7e6d0
commit 06f24bf632

View File

@@ -3,9 +3,9 @@ package de.diddiz.LogBlock;
import org.bukkit.inventory.ItemStack; import org.bukkit.inventory.ItemStack;
public class ChestAccess { public class ChestAccess {
final ItemStack itemStack; public final ItemStack itemStack;
final boolean remove; public final boolean remove;
final int itemType; public final int itemType;
public ChestAccess(ItemStack itemStack, boolean remove, int itemType) { public ChestAccess(ItemStack itemStack, boolean remove, int itemType) {
this.itemStack = itemStack; this.itemStack = itemStack;