This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Patch: java.nio.channels.Channels


Hi list,


I just commited the attached patch to merge java.nio.channels.Channels' 
coding style with GNU classpath.


Michael


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

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

Index: java/nio/channels/Channels.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/nio/channels/Channels.java,v
retrieving revision 1.8
diff -u -r1.8 Channels.java
--- java/nio/channels/Channels.java	20 Apr 2004 15:27:37 -0000	1.8
+++ java/nio/channels/Channels.java	20 Apr 2004 20:34:56 -0000
@@ -105,7 +105,7 @@
   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 static Writer newWriter(WritableByteChannel ch, CharsetEncoder enc,
                                  int minBufferCap)
   {
-    throw new Error ("not implemented");
+    throw new Error("not implemented");
   }
 
   /**

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]