Vérifier le robinet si l'inventaire est vide

public static boolean checkIfEmpty(Inventory inventory) {
  return inventory.firstEmpty() == 0;
}
Repulsive Reindeer