Implement missing Inventory#isEmpty method in AdminInventory

This commit is contained in:
Phoenix616 2020-12-01 20:05:11 +01:00
parent 51e9d5f267
commit af32b041ff
No known key found for this signature in database
GPG Key ID: 40E2321E71738EB0
1 changed files with 4 additions and 0 deletions

View File

@ -189,6 +189,10 @@ public class AdminInventory implements Inventory {
return 0;
}
public boolean isEmpty() {
return false;
}
@Override
public void remove(Material material) {
}