diff options
author | Michael Koch <konqueror@gmx.de> | 2003-10-12 15:49:19 +0000 |
---|---|---|
committer | Michael Koch <konqueror@gmx.de> | 2003-10-12 15:49:19 +0000 |
commit | 942a462fb00279edfe3a6bdb53d76d9625d8df64 (patch) | |
tree | d4ab79a7b72f4704b19dfe506e07f42a6465aaa3 /java/io/ObjectOutput.java | |
parent | 46efbb937eb5e473338dbce9251faddb8a685fc3 (diff) | |
download | classpath-942a462fb00279edfe3a6bdb53d76d9625d8df64.tar.gz |
2003-10-12 Michael Koch <konqueror@gmx.de>
* java/io/Externalizable.java,
java/io/FileFilter.java,
java/io/ObjectInput.java,
java/io/ObjectInputValidation.java,
java/io/ObjectOutput.java,
java/io/ObjectStreamConstants.java,
java/io/Serializable.java:
Removed redundant modifiers.
Diffstat (limited to 'java/io/ObjectOutput.java')
-rw-r--r-- | java/io/ObjectOutput.java | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/java/io/ObjectOutput.java b/java/io/ObjectOutput.java index 5a02add27..8c5833443 100644 --- a/java/io/ObjectOutput.java +++ b/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 |