Javadoc improvements per checkstyle

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2019-12-22 09:56:28 +11:00
parent d419ccca3f
commit d16413b877
96 changed files with 181 additions and 48 deletions

View File

@@ -65,7 +65,12 @@ public class MetadataValueAdapterTest {
assertEquals("", simpleValue(null).asString());
}
/** Get a fixed value MetadataValue. */
/**
* Get a fixed value MetadataValue.
*
* @param value the value to wrap
* @return the fixed value
*/
private MetadataValue simpleValue(Object value) {
return new FixedMetadataValue(plugin, value);
}