mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
Delete Collection getBlocks to Array getBlocks
This commit is contained in:
parent
f4140ae728
commit
341e386df8
@ -82,11 +82,7 @@ import java.util.Map.Entry;
|
|||||||
* @return Immutable collection containing randomly selected blocks
|
* @return Immutable collection containing randomly selected blocks
|
||||||
*/
|
*/
|
||||||
public Collection<PlotBlock> getBlocks(final int count) {
|
public Collection<PlotBlock> getBlocks(final int count) {
|
||||||
final List<PlotBlock> blocks = new ArrayList<>(count);
|
return Arrays.asList(getBlockArray(count));
|
||||||
for (int i = 0; i < count; i++) {
|
|
||||||
blocks.add(getBlock());
|
|
||||||
}
|
|
||||||
return Collections.unmodifiableCollection(blocks);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user