Commits

md_5 authored aeb62aa331d
Remove obsolete documentation from ArmorMeta#setTrim
No tags

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

Modified
18 18
19 19 /**
20 20 * Check whether or not this item has an armor trim.
21 21 *
22 22 * @return true if has a trim, false otherwise
23 23 */
24 24 boolean hasTrim();
25 25
26 26 /**
27 27 * Set the {@link ArmorTrim}.
28 - * <p>
29 - * While vanilla only allows for armor to be trimmed, trims may be applied
30 - * to any item whether or not the client will actually render a trim.
31 28 *
32 29 * @param trim the trim to set, or null to remove it
33 30 */
34 31 void setTrim(@Nullable ArmorTrim trim);
35 32
36 33 /**
37 34 * Get the {@link ArmorTrim}.
38 35 *
39 36 * @return the armor trim, or null if none
40 37 */

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

Add shortcut