#863: Fix boolean PersistentDataType

This commit is contained in:
Jishuna 2023-06-01 07:36:06 +10:00 committed by md_5
parent 9f15450b93
commit 49256865e6
No known key found for this signature in database
GPG key ID: E8E901AC7C617C11

View file

@ -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