3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-11-19 17:30:08 +01:00

chore: remove debugs

Dieser Commit ist enthalten in:
Pierre Maurice Schwang 2024-06-18 00:52:17 +02:00
Ursprung 8de3172941
Commit ced11b3623
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 37E613079F3E5BB9

Datei anzeigen

@ -93,7 +93,6 @@ public class FastSchematicReaderV3 implements ClipboardReader {
Clipboard clipboard = null; Clipboard clipboard = null;
while (needAdditionalIterate) { while (needAdditionalIterate) {
System.out.println("reset");
this.needAdditionalIterate = false; this.needAdditionalIterate = false;
this.resetableInputStream.reset(); this.resetableInputStream.reset();
this.resetableInputStream.mark(Integer.MAX_VALUE); this.resetableInputStream.mark(Integer.MAX_VALUE);
@ -108,7 +107,6 @@ public class FastSchematicReaderV3 implements ClipboardReader {
byte type; byte type;
while ((type = dataInputStream.readByte()) != NBTConstants.TYPE_END) { while ((type = dataInputStream.readByte()) != NBTConstants.TYPE_END) {
String tag = readTagName(); String tag = readTagName();
System.out.println(type + ": " + tag);
switch (tag) { switch (tag) {
case "Version" -> this.dataInputStream.skipNBytes(4); // We know it's v3 (skip 4 byte version int) case "Version" -> this.dataInputStream.skipNBytes(4); // We know it's v3 (skip 4 byte version int)
case "DataVersion" -> { case "DataVersion" -> {