Removed some old deprecated code and clean up javadocs + warnings

This commit is contained in:
Erik Broes
2011-07-17 15:34:40 +02:00
parent fd260b0f4d
commit cc9ccc8976
29 changed files with 5 additions and 269 deletions

View File

@@ -13,12 +13,10 @@ import org.bukkit.generator.ChunkGenerator;
public class CustomChunkGenerator extends InternalChunkGenerator {
private final ChunkGenerator generator;
private final WorldServer world;
private final long seed;
private final Random random;
public CustomChunkGenerator(World world, long seed, ChunkGenerator generator) {
this.world = (WorldServer) world;
this.seed = seed;
this.generator = generator;
this.random = new Random(seed);