Remove unnecessary Getter annotation

This commit is contained in:
Camotoy 2021-11-14 13:38:19 -05:00
parent 15f26999dd
commit 98ee3880b0
No known key found for this signature in database
GPG Key ID: 7EEFB66FE798081F
1 changed files with 1 additions and 2 deletions

View File

@ -26,12 +26,11 @@
package org.geysermc.connector.network.translators.world.chunk;
import com.github.steveice10.mc.protocol.data.game.chunk.DataPalette;
import lombok.Getter;
/**
* Acts as a lightweight chunk class that doesn't store biomes, heightmaps or block entities.
*/
public record GeyserChunk(@Getter DataPalette[] sections) {
public record GeyserChunk(DataPalette[] sections) {
public static GeyserChunk from(DataPalette[] sections) {
return new GeyserChunk(sections);