mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-30 16:19:03 +01:00
parent
f45d2e6a77
commit
0e0920a058
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…
Reference in a new issue