Pulling all pending Bukkit-JavaDoc changes
By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user