summaryrefslogtreecommitdiffstats
path: root/libjava/java/nio/channels/WritableByteChannel.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/nio/channels/WritableByteChannel.java')
-rw-r--r--libjava/java/nio/channels/WritableByteChannel.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/nio/channels/WritableByteChannel.java b/libjava/java/nio/channels/WritableByteChannel.java
index 7b66f5d35a2..0cc6858a402 100644
--- a/libjava/java/nio/channels/WritableByteChannel.java
+++ b/libjava/java/nio/channels/WritableByteChannel.java
@@ -1,4 +1,4 @@
-/* WritableByteChannel.java --
+/* WritableByteChannel.java --
Copyright (C) 2002 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -40,8 +40,8 @@ package java.nio.channels;
import java.io.IOException;
import java.nio.ByteBuffer;
-public interface WritableByteChannel
- extends Channel
+
+public interface WritableByteChannel extends Channel
{
/**
* Writes a sequence of bytes to this channel from the given buffer
@@ -56,5 +56,5 @@ public interface WritableByteChannel
* @exception NonWritableChannelException If this channel was not opened for
* writing
*/
- int write (ByteBuffer src) throws IOException;
+ int write(ByteBuffer src) throws IOException;
}
OpenPOWER on IntegriCloud