Commits

md_5 authored 9165c3c0b0e
SPIGOT-6188: Javadoc typo on SkullMeta getOwner()
No tags

src/main/java/org/bukkit/inventory/meta/SkullMeta.java

Modified
6 6
7 7 /**
8 8 * Represents a skull that can have an owner.
9 9 */
10 10 public interface SkullMeta extends ItemMeta {
11 11
12 12 /**
13 13 * Gets the owner of the skull.
14 14 *
15 15 * @return the owner if the skull
16 - * @deprecated see {@link #setOwningPlayer(org.bukkit.OfflinePlayer)}.
16 + * @deprecated see {@link #getOwningPlayer()}.
17 17 */
18 18 @Deprecated
19 19 @Nullable
20 20 String getOwner();
21 21
22 22 /**
23 23 * Checks to see if the skull has an owner.
24 24 *
25 25 * @return true if the skull has an owner
26 26 */

Everything looks good. We'll let you know here if there's anything you should know about.

Add shortcut