Switched to using the Java Arrays class, not the Scala one (Auto imports can be a pain sometimes)

This commit is contained in:
Adubbz 2015-04-13 08:21:03 +10:00
parent 01bc49eb65
commit c0ff997661
1 changed files with 1 additions and 1 deletions

View File

@ -8,6 +8,7 @@
package biomesoplenty.common.world.feature;
import java.util.Arrays;
import java.util.List;
import java.util.Random;
@ -16,7 +17,6 @@ import net.minecraft.block.state.IBlockState;
import net.minecraft.init.Blocks;
import net.minecraft.util.BlockPos;
import net.minecraft.world.World;
import scala.actors.threadpool.Arrays;
import biomesoplenty.api.biome.generation.GeneratorCustomizable;
import biomesoplenty.common.util.biome.GeneratorUtils;