diff options
Diffstat (limited to 'libjava/java/nio/channels/GatheringByteChannel.java')
-rw-r--r-- | libjava/java/nio/channels/GatheringByteChannel.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/nio/channels/GatheringByteChannel.java b/libjava/java/nio/channels/GatheringByteChannel.java index 3ef12b7b6dc..1528e56175c 100644 --- a/libjava/java/nio/channels/GatheringByteChannel.java +++ b/libjava/java/nio/channels/GatheringByteChannel.java @@ -59,7 +59,7 @@ public interface GatheringByteChannel * @exception NonWritableChannelException If this channel was not opened for * writing */ - public long write(ByteBuffer[] srcs, int offset, int length) + long write (ByteBuffer[] srcs, int offset, int length) throws IOException; /** @@ -75,5 +75,5 @@ public interface GatheringByteChannel * @exception NonWritableChannelException If this channel was not opened for * writing */ - public long write(ByteBuffer[] srcs) throws IOException; + long write (ByteBuffer[] srcs) throws IOException; } |