diff options
Diffstat (limited to 'libjava/java/nio/channels/Channels.java')
-rw-r--r-- | libjava/java/nio/channels/Channels.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/java/nio/channels/Channels.java b/libjava/java/nio/channels/Channels.java index 20ef50d..9eb2ec7 100644 --- a/libjava/java/nio/channels/Channels.java +++ b/libjava/java/nio/channels/Channels.java @@ -105,7 +105,7 @@ public final class Channels public static Reader newReader(ReadableByteChannel ch, CharsetDecoder dec, int minBufferCap) { - throw new Error ("not implemented"); + throw new Error("not implemented"); } /** @@ -127,7 +127,7 @@ public final class Channels public static Writer newWriter(WritableByteChannel ch, CharsetEncoder enc, int minBufferCap) { - throw new Error ("not implemented"); + throw new Error("not implemented"); } /** |