mirror of
https://hub.spigotmc.org/stash/scm/spigot/bukkit.git
synced 2025-08-05 16:49:39 +00:00
Slight tweak to boolean PersistentDataType javadoc
This commit is contained in:
parent
d2b99e567d
commit
01d577f539
1 changed files with 2 additions and 2 deletions
|
@ -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> {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue