mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2025-01-01 14:08:01 +01:00
Removed unused argument in InventorySave constructor
This commit is contained in:
parent
3ab2c46eed
commit
3d7ef58323
@ -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<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user