aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/io/ObjectOutput.java
diff options
context:
space:
mode:
authorMichael Koch <konqueror@gmx.de>2003-10-11 18:38:12 +0000
committerMichael Koch <mkoch@gcc.gnu.org>2003-10-11 18:38:12 +0000
commitcb2446831a3f7a589aef485676004e33853dfcfb (patch)
tree119115e7d7924c649aded11d02c0c80462db8bae /libjava/java/io/ObjectOutput.java
parent6a12e65c11749cb0d8c0b39402f09ac7f18a22cc (diff)
downloadgcc-cb2446831a3f7a589aef485676004e33853dfcfb.zip
gcc-cb2446831a3f7a589aef485676004e33853dfcfb.tar.gz
gcc-cb2446831a3f7a589aef485676004e33853dfcfb.tar.bz2
Externalizable.java, [...]: Removed redundant modifiers.
2003-10-11 Michael Koch <konqueror@gmx.de> * 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. From-SVN: r72352
Diffstat (limited to 'libjava/java/io/ObjectOutput.java')
-rw-r--r--libjava/java/io/ObjectOutput.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/libjava/java/io/ObjectOutput.java b/libjava/java/io/ObjectOutput.java
index 5a02add..8c58334 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 <code>len</code> 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