mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-25 12:05:53 +01:00
SPIGOT-5471: Allow empty title/author for books
This commit is contained in:
parent
2d9db47fb5
commit
85106731bf
@ -163,12 +163,12 @@ public class CraftMetaBook extends CraftMetaItem implements BookMeta {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean hasAuthor() {
|
public boolean hasAuthor() {
|
||||||
return !Strings.isNullOrEmpty(author);
|
return this.author != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean hasTitle() {
|
public boolean hasTitle() {
|
||||||
return !Strings.isNullOrEmpty(title);
|
return this.title != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user