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:
Ursprung
8de3172941
Commit
ced11b3623
@ -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" -> {
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren