mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-09 03:43:40 +01:00
Fix some Javadoc warnings
By: md_5 <git@md-5.net>
This commit is contained in:
parent
f1fb3d9462
commit
1cb9aaf19a
4 changed files with 4 additions and 4 deletions
|
@ -14,7 +14,7 @@ public interface AbstractHorse extends Animals, Vehicle, InventoryHolder, Tameab
|
|||
* Whether a horse is a regular horse, donkey, mule, or other kind of horse
|
||||
* is determined using the variant.
|
||||
*
|
||||
* @return a {@link Variant} representing the horse's variant
|
||||
* @return a {@link Horse.Variant} representing the horse's variant
|
||||
* @deprecated different variants are different classes
|
||||
*/
|
||||
@Deprecated
|
||||
|
|
|
@ -42,7 +42,7 @@ public enum EntityType {
|
|||
*/
|
||||
WITHER_SKELETON("wither_skeleton", WitherSkeleton.class, 5),
|
||||
/**
|
||||
* @See Stray
|
||||
* @see Stray
|
||||
*/
|
||||
STRAY("stray", Stray.class, 6),
|
||||
/**
|
||||
|
|
|
@ -144,7 +144,7 @@ public interface Horse extends AbstractHorse {
|
|||
public void setStyle(Style style);
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @return carrying chest status
|
||||
* @deprecated see {@link ChestedHorse}
|
||||
*/
|
||||
@Deprecated
|
||||
|
|
|
@ -43,7 +43,7 @@ public interface Zombie extends Monster {
|
|||
public void setVillagerProfession(Villager.Profession profession);
|
||||
|
||||
/**
|
||||
* @return
|
||||
* @return profession
|
||||
* @see ZombieVillager#getVillagerProfession()
|
||||
*/
|
||||
@Deprecated
|
||||
|
|
Loading…
Reference in a new issue