diff options
Diffstat (limited to 'libjava/java/nio/channels/ReadableByteChannel.java')
-rw-r--r-- | libjava/java/nio/channels/ReadableByteChannel.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libjava/java/nio/channels/ReadableByteChannel.java b/libjava/java/nio/channels/ReadableByteChannel.java index d1653cc8d3e..f870e6bdfa8 100644 --- a/libjava/java/nio/channels/ReadableByteChannel.java +++ b/libjava/java/nio/channels/ReadableByteChannel.java @@ -55,5 +55,5 @@ public interface ReadableByteChannel extends Channel * @exception NonReadableChannelException If this channel was not opened for * reading */ - public int read (ByteBuffer dst) throws IOException; + int read (ByteBuffer dst) throws IOException; } |