Fix intellij auto annotation

This commit is contained in:
themode 2020-12-14 01:45:46 +01:00
parent 8cddf30b9e
commit 3cfa216274
3 changed files with 3 additions and 3 deletions

View File

@ -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);
}

View File

@ -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));
}

View File

@ -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));
}