Fix wrong Java docs

This commit is contained in:
DerFrZocker 2023-08-19 18:02:03 +02:00
parent 18f88def8b
commit cc1b99b508
No known key found for this signature in database
GPG key ID: 713F71FFFE1DDF91
2 changed files with 2 additions and 2 deletions

View file

@ -3053,7 +3053,7 @@ public interface BlockType<B extends BlockData> extends Keyed, Translatable {
/**
* Returns true if this BlockType has a corresponding {@link ItemType}.
*
* @return true if there is an ItemType with the same key, otherwise false
* @return true if there is a corresponding ItemType, otherwise false
* @see #getItemType()
*/
boolean hasItemType();

View file

@ -1282,7 +1282,7 @@ public interface ItemType extends Keyed, Translatable {
/**
* Returns true if this ItemType has a corresponding {@link BlockType}.
*
* @return true if there is a BlockType with the same key, otherwise false
* @return true if there is a corresponding BlockType, otherwise false
* @see #getBlockType()
*/
boolean hasBlockType();