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

@@ -20,7 +20,9 @@ public class BukkitObjectInputStream extends ObjectInputStream {
/**
* Constructor provided to mirror super functionality.
*
* @throws IOException if an I/O error occurs while reading stream heade
* @throws IOException if an I/O error occurs while creating this stream
* @throws SecurityException if a security manager exists and denies
* enabling subclassing
* @see ObjectInputStream#ObjectInputStream()
*/
protected BukkitObjectInputStream() throws IOException, SecurityException {

View File

@@ -20,7 +20,9 @@ public class BukkitObjectOutputStream extends ObjectOutputStream {
/**
* Constructor provided to mirror super functionality.
*
* @throws IOException if an I/O error occurs while writing stream header
* @throws IOException if an I/O error occurs while creating this stream
* @throws SecurityException if a security manager exists and denies
* enabling subclassing
* @see ObjectOutputStream#ObjectOutputStream()
*/
protected BukkitObjectOutputStream() throws IOException, SecurityException {

View File

@@ -0,0 +1,5 @@
/**
* Classes used to facilitate stream processing for specific Bukkit concepts.
*/
package org.bukkit.util.io;

View File

@@ -0,0 +1,5 @@
/**
* Classes dedicated to facilitating deterministic noise.
*/
package org.bukkit.util.noise;

View File

@@ -0,0 +1,6 @@
/**
* Multi and single purpose classes to facilitate various programmatic
* concepts.
*/
package org.bukkit.util;

View File

@@ -0,0 +1,6 @@
/**
* Static methods for miscellaneous {@link org.bukkit.permissions.Permission
* permission} functionality.
*/
package org.bukkit.util.permissions;