mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-12-29 12:37:37 +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 {
|
||||
private static InventorySave instance = new InventorySave(BSkyBlock.getInstance());
|
||||
private static InventorySave instance = new InventorySave();
|
||||
private HashMap<UUID, InventoryStore> inventories;
|
||||
|
||||
/**
|
||||
* Saves the inventory of a player
|
||||
*/
|
||||
public InventorySave(BSkyBlock plugin) {
|
||||
public InventorySave() {
|
||||
inventories = new HashMap<>();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user