From 48a5a9e90ee2f13ecb9244595ed83dbda97c70c3 Mon Sep 17 00:00:00 2001 From: mkoch Date: Sun, 23 Mar 2003 19:11:19 +0000 Subject: 2003-03-23 Michael Koch * java/io/BufferedOutputStream.java: Reformated. * java/io/BufferedReader.java: Reformated. * java/io/ByteArrayOutputStream.java (size): Fixed @see tag. * java/io/CharArrayWriter.java (size): Fixed @see tag. * java/io/DataInput.java: Reformated. * java/io/DataOutput.java: Reformated. * java/io/DataOutputStream.java: Merged copyright years with classpath. * java/io/Externalizable.java: Reformated. * java/io/FileFilter.java: Reformated. * java/io/FileInputStream.java: Merged copyright years with classpath. * java/io/FileOutputStream.java: Merged copyright years with classpath. * java/io/FilePermission.java (FilePermission): Replaced @XXX with FIXME:. * java/io/FileWriter.java: Reformated. * java/io/FilenameFilter.java: Reformated. * java/io/FilterInputStream.java: Reformated. * java/io/FilterOutputStream.java: Reformated. * java/io/FilterReader.java: Reformated. * java/io/FilterWriter.java: Reformated. * java/io/LineNumberInputStream.java (LineNumberInputStream): Replaced @code with HTML tags to make javadoc happy. (getLineNumber): Fixed @return tag. * java/io/ObjectInput.java: Reformated. * java/io/ObjectOutput.java: Reformated. * java/io/ObjectStreamClass.java: Reformated. * java/io/PrintStream.java: Merged copyright years with classpath. * java/io/PushbackReader.java (PushbackReader): Replaced @code with @param. * java/io/SerializablePermission.java: Reformated. * java/io/StreamTokenizer.java (resetSyntax): Fixed @see tag. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@64748 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/io/ObjectInput.java | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'libjava/java/io/ObjectInput.java') diff --git a/libjava/java/io/ObjectInput.java b/libjava/java/io/ObjectInput.java index 678a31edc48..831203a14a4 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 * buf starting at position offset 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 * -- cgit v1.2.3