mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-04-03 18:16:23 +02:00
chore/fix: update iterator
This commit is contained in:
parent
36de196d3d
commit
30867354cc
@ -35,16 +35,19 @@ interface PlotProvider {
|
|||||||
Stream<Plot> streamPlots();
|
Stream<Plot> streamPlots();
|
||||||
|
|
||||||
default Stream<Plot> streamPlotsInPlotAreas(PlotArea[] areas) {
|
default Stream<Plot> streamPlotsInPlotAreas(PlotArea[] areas) {
|
||||||
|
if (areas == null || areas.length == 0) {
|
||||||
|
return Stream.of();
|
||||||
|
}
|
||||||
return StreamSupport.stream(Spliterators.spliteratorUnknownSize(new Iterator<>() {
|
return StreamSupport.stream(Spliterators.spliteratorUnknownSize(new Iterator<>() {
|
||||||
private int areaIndex = -1;
|
private int areaIndex = -1;
|
||||||
private Iterator<Plot> currentAreaPlots;
|
private Iterator<Plot> currentAreaPlots;
|
||||||
@Override
|
@Override
|
||||||
public boolean hasNext() {
|
public boolean hasNext() {
|
||||||
if (currentAreaPlots == null) {
|
if (currentAreaPlots == null || !currentAreaPlots.hasNext()) {
|
||||||
return areas.length > 0;
|
if (areaIndex >= areas.length) {
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
if (!currentAreaPlots.hasNext()) {
|
currentAreaPlots = areas[++areaIndex].getPlots().iterator();
|
||||||
return ++areaIndex < areas.length - 1;
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user