From 0f3b81fcd62492bcd9bbf6e971a05e4d0367762d Mon Sep 17 00:00:00 2001 From: Pierre Maurice Schwang Date: Fri, 21 Jun 2024 00:47:59 +0200 Subject: [PATCH] chore: constant not required anymore --- .../core/extent/clipboard/io/FastSchematicReaderV3.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/io/FastSchematicReaderV3.java b/worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/io/FastSchematicReaderV3.java index 2f91eb12c..8db007b25 100644 --- a/worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/io/FastSchematicReaderV3.java +++ b/worldedit-core/src/main/java/com/fastasyncworldedit/core/extent/clipboard/io/FastSchematicReaderV3.java @@ -65,7 +65,6 @@ import java.util.zip.GZIPInputStream; public class FastSchematicReaderV3 implements ClipboardReader { private static final Logger LOGGER = LogManagerCompat.getLogger(); - private static final int CONTENT_DATA_TAGS = 3; // Blocks, Biomes, Entities private final InputStream resetableInputStream; private final MutableBlockVector3 dimensions = MutableBlockVector3.at(0, 0, 0); @@ -81,7 +80,7 @@ public class FastSchematicReaderV3 implements ClipboardReader { private int dataVersion = -1; - public FastSchematicReaderV3(@NonNull InputStream stream) throws IOException { + public FastSchematicReaderV3(@NonNull InputStream stream) { Objects.requireNonNull(stream, "stream"); if (stream instanceof FileInputStream fileInputStream) { stream = new ResettableFileInputStream(fileInputStream);