diff options
Diffstat (limited to 'libjava/java/io/ObjectOutput.java')
-rw-r--r-- | libjava/java/io/ObjectOutput.java | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/libjava/java/io/ObjectOutput.java b/libjava/java/io/ObjectOutput.java index 1397027..f9e923b 100644 --- a/libjava/java/io/ObjectOutput.java +++ b/libjava/java/io/ObjectOutput.java @@ -58,8 +58,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void write(int b) throws IOException; - /*************************************************************************/ - /** * This method writes all the bytes in the specified byte array to the * output stream. @@ -70,8 +68,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void write(byte[] buf) throws IOException; - /*************************************************************************/ - /** * This method writes <code>len</code> bytes from the specified array * starting at index <code>offset</code> into that array. @@ -85,8 +81,6 @@ public interface ObjectOutput extends DataOutput public abstract void write(byte[] buf, int offset, int len) throws IOException; - /*************************************************************************/ - /** * This method writes a object instance to a stream. The format of the * data written is determined by the actual implementation of this method @@ -97,8 +91,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void writeObject(Object obj) throws IOException; - /*************************************************************************/ - /** * This method causes any buffered data to be flushed out to the underlying * stream @@ -107,8 +99,6 @@ public interface ObjectOutput extends DataOutput */ public abstract void flush() throws IOException; - /*************************************************************************/ - /** * This method closes the underlying stream. * |