3
0
Mirror von https://github.com/IntellectualSites/FastAsyncWorldEdit.git synchronisiert 2024-09-19 22:30:05 +02:00

Add @Nullable to NbtValued methods.

Dieser Commit ist enthalten in:
sk89q 2014-07-13 18:15:16 -07:00
Ursprung b751cbe1ee
Commit 759c6ba50d

Datei anzeigen

@ -20,7 +20,8 @@
package com.sk89q.worldedit.world; package com.sk89q.worldedit.world;
import com.sk89q.jnbt.CompoundTag; import com.sk89q.jnbt.CompoundTag;
import com.sk89q.worldedit.world.DataException;
import javax.annotation.Nullable;
/** /**
* Indicates an object that contains extra data identified as an NBT structure. This * Indicates an object that contains extra data identified as an NBT structure. This
@ -47,6 +48,7 @@ public interface NbtValued {
* *
* @return compound tag, or null * @return compound tag, or null
*/ */
@Nullable
CompoundTag getNbtData(); CompoundTag getNbtData();
/** /**
@ -55,6 +57,6 @@ public interface NbtValued {
* @param nbtData NBT data, or null if no data * @param nbtData NBT data, or null if no data
* @throws DataException if possibly the data is invalid * @throws DataException if possibly the data is invalid
*/ */
void setNbtData(CompoundTag nbtData) throws DataException; void setNbtData(@Nullable CompoundTag nbtData) throws DataException;
} }