From 4d5cd4e1695551e1e32c87d14a30cbae9aad514e Mon Sep 17 00:00:00 2001 From: mkoch Date: Sat, 11 Oct 2003 18:38:12 +0000 Subject: 2003-10-11 Michael Koch * java/io/Externalizable.java, java/io/FileFilter.java, java/io/FilePermission.java, java/io/ObjectInput.java, java/io/ObjectInputValidation.java, java/io/ObjectOutput.java, java/io/ObjectStreamClass.java, java/io/ObjectStreamConstants.java, java/io/Serializable.java: Removed redundant modifiers. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72352 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/io/ObjectOutput.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'libjava/java/io/ObjectOutput.java') diff --git a/libjava/java/io/ObjectOutput.java b/libjava/java/io/ObjectOutput.java index 5a02add275a..8c58334437a 100644 --- a/libjava/java/io/ObjectOutput.java +++ b/libjava/java/io/ObjectOutput.java @@ -57,7 +57,7 @@ public interface ObjectOutput extends DataOutput * * @exception IOException If an error occurs. */ - public abstract void write(int b) throws IOException; + void write(int b) throws IOException; /** * This method writes all the bytes in the specified byte array to the @@ -67,7 +67,7 @@ public interface ObjectOutput extends DataOutput * * @exception IOException If an error occurs. */ - public abstract void write(byte[] buf) throws IOException; + void write(byte[] buf) throws IOException; /** * This method writes len bytes from the specified array @@ -79,7 +79,7 @@ public interface ObjectOutput extends DataOutput * * @exception IOException If an error occurs. */ - public abstract void write(byte[] buf, int offset, int len) + void write(byte[] buf, int offset, int len) throws IOException; /** @@ -90,7 +90,7 @@ public interface ObjectOutput extends DataOutput * * @exception IOException If an error occurs */ - public abstract void writeObject(Object obj) throws IOException; + void writeObject(Object obj) throws IOException; /** * This method causes any buffered data to be flushed out to the underlying @@ -98,14 +98,14 @@ public interface ObjectOutput extends DataOutput * * @exception IOException If an error occurs */ - public abstract void flush() throws IOException; + void flush() throws IOException; /** * This method closes the underlying stream. * * @exception IOException If an error occurs */ - public abstract void close() throws IOException; + void close() throws IOException; } // interface ObjectOutput -- cgit v1.2.3