Channels.java: Merged coding style with GNU classpath.

2004-04-20  Michael Koch  <konqueror@gmx.de>

	* java/nio/channels/Channels.java:
	Merged coding style with GNU classpath.

From-SVN: r80923
This commit is contained in:
Michael Koch
2004-04-20 20:35:14 +00:00
committed by Michael Koch
parent f58746340d
commit 8a6c1d2951
2 changed files with 7 additions and 2 deletions
+2 -2
View File
@@ -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");
}
/**