summaryrefslogtreecommitdiff
path: root/gnu/java/nio/ChannelInputStream.java
diff options
context:
space:
mode:
Diffstat (limited to 'gnu/java/nio/ChannelInputStream.java')
-rw-r--r--gnu/java/nio/ChannelInputStream.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/gnu/java/nio/ChannelInputStream.java b/gnu/java/nio/ChannelInputStream.java
index f56536d65..5cad678c6 100644
--- a/gnu/java/nio/ChannelInputStream.java
+++ b/gnu/java/nio/ChannelInputStream.java
@@ -1,4 +1,4 @@
-/* ChannelInputStream.java --
+/* ChannelInputStream.java --
Copyright (C) 2003 Free Software Foundation, Inc.
This file is part of GNU Classpath.
@@ -51,11 +51,11 @@ import java.nio.channels.SelectableChannel;
public final class ChannelInputStream extends InputStream
{
private ReadableByteChannel ch;
-
+
public ChannelInputStream (ReadableByteChannel ch)
{
super();
-
+
this.ch = ch;
}
@@ -72,9 +72,9 @@ public final class ChannelInputStream extends InputStream
public int read() throws IOException
{
if (ch instanceof SelectableChannel
- && (! ((SelectableChannel) ch).isBlocking()))
+ && (! ((SelectableChannel) ch).isBlocking()))
throw new IllegalBlockingModeException();
-
+
ByteBuffer buffer = ByteBuffer.allocate(1);
int result = ch.read(buffer);