Skip to content

Commit

Permalink
refactor nbt utils
Browse files Browse the repository at this point in the history
  • Loading branch information
Brokkonaut committed Aug 15, 2023
1 parent 4da6d72 commit 3f1a33d
Show file tree
Hide file tree
Showing 20 changed files with 219 additions and 1,078 deletions.
Expand Up @@ -225,7 +225,7 @@ default public boolean isCamelSitting(Camel camel) {
*/
default public CompoundTag getNbt(Entity entity) {
getNMSUtils().getPlugin().getLogger().log(Level.SEVERE, "Call to unimplemented method", new RuntimeException());
return new CompoundTag();
return null;
}

/**
Expand Down
@@ -1,6 +1,5 @@
package de.cubeside.nmsutils;

import de.cubeside.nmsutils.nbt.NbtUtils;
import org.bukkit.Bukkit;
import org.bukkit.Server;
import org.bukkit.plugin.Plugin;
Expand Down
@@ -1,4 +1,6 @@
package de.cubeside.nmsutils.nbt;
package de.cubeside.nmsutils;

import de.cubeside.nmsutils.nbt.CompoundTag;

public interface NbtUtils {
public CompoundTag parseBinary(byte[] in);
Expand Down

This file was deleted.

47 changes: 0 additions & 47 deletions nmsutils-core/src/main/java/de/cubeside/nmsutils/nbt/ByteTag.java

This file was deleted.

0 comments on commit 3f1a33d

Please sign in to comment.