Commits

md_5 authored 7d83cba0f25
BUILDTOOLS-203: Fix invalid javadoc
No tags

src/main/java/org/bukkit/attribute/AttributeInstance.java

Modified
25 25 /**
26 26 * Set the base value of this instance.
27 27 *
28 28 * @param value new base value
29 29 */
30 30 void setBaseValue(double value);
31 31
32 32 /**
33 33 * Get all modifiers present on this instance.
34 34 *
35 - * @return
35 + * @return a copied collection of all modifiers
36 36 */
37 37 Collection<AttributeModifier> getModifiers();
38 38
39 39 /**
40 40 * Add a modifier to this instance.
41 41 *
42 42 * @param modifier to add
43 43 */
44 44 void addModifier(AttributeModifier modifier);
45 45

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

Add shortcut