Removed unused argument in InventorySave constructor

This commit is contained in:
Florian CUNY 2018-06-03 10:09:31 +02:00
parent 3ab2c46eed
commit 3d7ef58323

View File

@ -14,13 +14,13 @@ import us.tastybento.bskyblock.BSkyBlock;
* *
*/ */
public class InventorySave { public class InventorySave {
private static InventorySave instance = new InventorySave(BSkyBlock.getInstance()); private static InventorySave instance = new InventorySave();
private HashMap<UUID, InventoryStore> inventories; private HashMap<UUID, InventoryStore> inventories;
/** /**
* Saves the inventory of a player * Saves the inventory of a player
*/ */
public InventorySave(BSkyBlock plugin) { public InventorySave() {
inventories = new HashMap<>(); inventories = new HashMap<>();
} }