mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
Fix copy-pasted BlockType.Typed documentation
By: md_5 <git@md-5.net>
This commit is contained in:
parent
26f4f1cf7d
commit
0ece9a991b
1 changed files with 4 additions and 3 deletions
|
@ -128,10 +128,11 @@ import org.jetbrains.annotations.Nullable;
|
|||
public interface BlockType extends Keyed, Translatable {
|
||||
|
||||
/**
|
||||
* Typed represents a subtype of {@link ItemType}s that have a known item meta type
|
||||
* at compile time.
|
||||
* Typed represents a subtype of {@link BlockType}s that have a known block
|
||||
* data type at compile time.
|
||||
*
|
||||
* @param <B> the generic type of the item meta that represents the item type.
|
||||
* @param <B> the generic type of the block data that represents the block
|
||||
* type.
|
||||
*/
|
||||
interface Typed<B extends BlockData> extends BlockType {
|
||||
|
||||
|
|
Loading…
Reference in a new issue