mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-09-18 21:45:12 +00:00
#863: Fix boolean PersistentDataType
This commit is contained in:
parent
9f15450b93
commit
49256865e6
1 changed files with 2 additions and 2 deletions
|
@ -176,13 +176,13 @@ public interface PersistentDataType<T, Z> {
|
|||
@NotNull
|
||||
@Override
|
||||
public Class<Byte> getPrimitiveType() {
|
||||
return byte.class;
|
||||
return Byte.class;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
@Override
|
||||
public Class<Boolean> getComplexType() {
|
||||
return boolean.class;
|
||||
return Boolean.class;
|
||||
}
|
||||
|
||||
@NotNull
|
||||
|
|
Loading…
Add table
Reference in a new issue