mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 02:25:28 +01:00
#753: RecipeIterator#hasNext will now accurately represent if the current iterator has a next item.
This commit is contained in:
parent
890130b460
commit
da9bb3ea92
@ -19,13 +19,23 @@ public class RecipeIterator implements Iterator<Recipe> {
|
||||
|
||||
@Override
|
||||
public boolean hasNext() {
|
||||
return (current != null && current.hasNext()) || recipes.hasNext();
|
||||
if (current != null && current.hasNext()) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (recipes.hasNext()) {
|
||||
current = recipes.next().getValue().values().iterator();
|
||||
return hasNext();
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Recipe next() {
|
||||
if (current == null || !current.hasNext()) {
|
||||
current = recipes.next().getValue().values().iterator();
|
||||
return next();
|
||||
}
|
||||
|
||||
return current.next().toBukkitRecipe();
|
||||
|
Loading…
Reference in New Issue
Block a user