SPIGOT-5409: Remove unnecessary defaulting in CraftMetaBookSigned

This commit is contained in:
md_5 2019-12-05 10:28:16 +11:00
parent 821238b64c
commit 5c9e723692

View File

@ -56,14 +56,10 @@ class CraftMetaBookSigned extends CraftMetaBook implements BookMeta {
if (hasTitle()) {
itemData.setString(BOOK_TITLE.NBT, this.title);
} else {
itemData.setString(BOOK_TITLE.NBT, " ");
}
if (hasAuthor()) {
itemData.setString(BOOK_AUTHOR.NBT, this.author);
} else {
itemData.setString(BOOK_AUTHOR.NBT, " ");
}
if (hasPages()) {
@ -79,8 +75,6 @@ class CraftMetaBookSigned extends CraftMetaBook implements BookMeta {
if (generation != null) {
itemData.setInt(GENERATION.NBT, generation);
} else {
itemData.setInt(GENERATION.NBT, 0);
}
}