Fix javadoc errors

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2019-05-05 12:59:26 +10:00
parent 11c5260e6a
commit e917cff666

View File

@ -43,7 +43,7 @@ public interface Villager extends AbstractVillager {
/** /**
* Gets the level of this villager. * Gets the level of this villager.
* *
* A villager with a level <= 1 and no experience is liable to lose its * A villager with a level &lt;= 1 and no experience is liable to lose its
* profession. * profession.
* *
* @return this villager's level * @return this villager's level
@ -53,7 +53,7 @@ public interface Villager extends AbstractVillager {
/** /**
* Sets the level of this villager. * Sets the level of this villager.
* *
* A villager with a level <= 1 and no experience is liable to lose its * A villager with a level &lt;= 1 and no experience is liable to lose its
* profession. * profession.
* *
* @param level the new level * @param level the new level
@ -72,7 +72,7 @@ public interface Villager extends AbstractVillager {
* Sets the trading experience of this villager. * Sets the trading experience of this villager.
* *
* @param experience new experience * @param experience new experience
* @throws IllegalArgumentException if experience < 0 * @throws IllegalArgumentException if experience &lt; 0
*/ */
public void setVillagerExperience(int experience); public void setVillagerExperience(int experience);