Pulling all pending Bukkit-JavaDoc changes

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2013-09-10 21:02:53 -05:00
parent f60d6710d5
commit 67439804f4
61 changed files with 219 additions and 43 deletions

View File

@@ -9,7 +9,6 @@ import java.io.IOException;
/**
* Class containing file utilities
*/
public class FileUtil {
/**
@@ -19,7 +18,6 @@ public class FileUtil {
* @param outFile the target filename
* @return true on success
*/
public static boolean copy(File inFile, File outFile) {
if (!inFile.exists()) {
return false;

View File

@@ -23,7 +23,7 @@ public class BukkitObjectInputStream extends ObjectInputStream {
*
* @throws IOException
* @throws SecurityException
* @see {@link ObjectInputStream#ObjectInputStream()}
* @see ObjectInputStream#ObjectInputStream()
*/
protected BukkitObjectInputStream() throws IOException, SecurityException {
super();
@@ -35,7 +35,7 @@ public class BukkitObjectInputStream extends ObjectInputStream {
*
* @param in
* @throws IOException
* @see {@link ObjectInputStream#ObjectInputStream(InputStream)}
* @see ObjectInputStream#ObjectInputStream(InputStream)
*/
public BukkitObjectInputStream(InputStream in) throws IOException {
super(in);

View File

@@ -23,7 +23,7 @@ public class BukkitObjectOutputStream extends ObjectOutputStream {
*
* @throws IOException
* @throws SecurityException
* @see {@link ObjectOutputStream#ObjectOutputStream()}
* @see ObjectOutputStream#ObjectOutputStream()
*/
protected BukkitObjectOutputStream() throws IOException, SecurityException {
super();
@@ -35,7 +35,7 @@ public class BukkitObjectOutputStream extends ObjectOutputStream {
*
* @param out
* @throws IOException
* @see {@link ObjectOutputStream#ObjectOutputStream(OutputStream)}
* @see ObjectOutputStream#ObjectOutputStream(OutputStream)
*/
public BukkitObjectOutputStream(OutputStream out) throws IOException {
super(out);