3
0
Mirror von https://github.com/GeyserMC/Geyser.git synchronisiert 2024-10-03 16:31:14 +02:00

Remove unnecessary Getter annotation

Dieser Commit ist enthalten in:
Camotoy 2021-11-14 13:38:19 -05:00
Ursprung 15f26999dd
Commit 98ee3880b0
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 7EEFB66FE798081F

Datei anzeigen

@ -26,12 +26,11 @@
package org.geysermc.connector.network.translators.world.chunk; package org.geysermc.connector.network.translators.world.chunk;
import com.github.steveice10.mc.protocol.data.game.chunk.DataPalette; 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. * 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) { public static GeyserChunk from(DataPalette[] sections) {
return new GeyserChunk(sections); return new GeyserChunk(sections);