mirror of
https://github.com/Minestom/Minestom.git
synced 2025-03-02 11:21:15 +01:00
Fix intellij auto annotation
This commit is contained in:
parent
8cddf30b9e
commit
3cfa216274
@ -54,7 +54,7 @@ public class MainDemo {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void fillBiomes(Biome @NotNull [] biomes, int chunkX, int chunkZ) {
|
||||
public void fillBiomes(@NotNull Biome[] biomes, int chunkX, int chunkZ) {
|
||||
Arrays.fill(biomes, Biome.PLAINS);
|
||||
}
|
||||
|
||||
|
@ -25,7 +25,7 @@ public class ChunkGeneratorDemo implements ChunkGenerator {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void fillBiomes(Biome @NotNull [] biomes, int chunkX, int chunkZ) {
|
||||
public void fillBiomes(@NotNull Biome[] biomes, int chunkX, int chunkZ) {
|
||||
Arrays.fill(biomes, MinecraftServer.getBiomeManager().getById(0));
|
||||
}
|
||||
|
||||
|
@ -64,7 +64,7 @@ public class NoiseTestGenerator implements ChunkGenerator {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void fillBiomes(Biome @NotNull [] biomes, int chunkX, int chunkZ) {
|
||||
public void fillBiomes(@NotNull Biome[] biomes, int chunkX, int chunkZ) {
|
||||
Arrays.fill(biomes, MinecraftServer.getBiomeManager().getById(0));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user