mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-07 23:52:11 -07:00
Slight tweak to boolean PersistentDataType javadoc
By: md_5 <git@md-5.net>
This commit is contained in:
@@ -61,7 +61,7 @@ public interface PersistentDataType<T, Z> {
|
||||
/**
|
||||
* A convenience implementation to convert between Byte and Boolean as there is
|
||||
* no native implementation for booleans. <br>
|
||||
* Any byte value > 0 is considered to be true.
|
||||
* Any byte value not equal to 0 is considered to be true.
|
||||
*/
|
||||
PersistentDataType<Byte, Boolean> BOOLEAN = new BooleanPersistentDataType();
|
||||
|
||||
@@ -169,7 +169,7 @@ public interface PersistentDataType<T, Z> {
|
||||
/**
|
||||
* A convenience implementation to convert between Byte and Boolean as there is
|
||||
* no native implementation for booleans. <br>
|
||||
* Any byte value > 0 is considered to be true.
|
||||
* Any byte value not equal to 0 is considered to be true.
|
||||
*/
|
||||
class BooleanPersistentDataType implements PersistentDataType<Byte, Boolean> {
|
||||
|
||||
|
Reference in New Issue
Block a user