aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io/ObjectInput.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/io/ObjectInput.java')
-rw-r--r--libjava/java/io/ObjectInput.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/libjava/java/io/ObjectInput.java b/libjava/java/io/ObjectInput.java
index 678a31e..831203a 100644
--- a/libjava/java/io/ObjectInput.java
+++ b/libjava/java/io/ObjectInput.java
@@ -58,8 +58,6 @@ public interface ObjectInput extends DataInput
*/
public abstract int available() throws IOException;
- /*************************************************************************/
-
/**
* This method reading a byte of data from a stream. It returns that byte
* as an int. This method blocks if no data is available to be read.
@@ -70,8 +68,6 @@ public interface ObjectInput extends DataInput
*/
public abstract int read() throws IOException;
- /*************************************************************************/
-
/**
* This method reads raw bytes and stores them them a byte array buffer.
* Note that this method will block if no data is available. However,
@@ -86,8 +82,6 @@ public interface ObjectInput extends DataInput
*/
public abstract int read(byte[] buf) throws IOException;
- /*************************************************************************/
-
/**
* This method reads raw bytes and stores them in a byte array buffer
* <code>buf</code> starting at position <code>offset</code> into the
@@ -107,8 +101,6 @@ public interface ObjectInput extends DataInput
*/
public abstract int read(byte[] buf, int offset, int len) throws IOException;
- /*************************************************************************/
-
/**
* Reads an object instance and returns it. If the class for the object
* being read cannot be found, then a ClassNotFoundException will
@@ -123,8 +115,6 @@ public interface ObjectInput extends DataInput
public abstract Object readObject()
throws ClassNotFoundException, IOException;
- /*************************************************************************/
-
/**
* This method causes the specified number of bytes to be read and
* discarded. It is possible that fewer than the requested number of bytes
@@ -138,8 +128,6 @@ public interface ObjectInput extends DataInput
*/
public abstract long skip(long num_bytes) throws IOException;
- /*************************************************************************/
-
/**
* This method closes the input source
*