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]

FYI: Patch: gnu.java.nio.FileChannelImpl


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Hi list,


Here another fix for the NIO stuff.


Michael
- -- 
Homepage: http://www.worldforge.org/
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.1 (GNU/Linux)

iD8DBQE+/EqWWSOgCCdjSDsRAnK6AJwOB8hb0ugk2gQvse0niC2nwHlICQCfYCw+
XW66ii8E8fZfmGgZCQ2dMm4=
=+yzI
-----END PGP SIGNATURE-----
Index: ChangeLog
===================================================================
RCS file: /cvs/gcc/gcc/libjava/ChangeLog,v
retrieving revision 1.2000
diff -u -b -B -r1.2000 ChangeLog
--- ChangeLog	27 Jun 2003 13:34:11 -0000	1.2000
+++ ChangeLog	27 Jun 2003 13:41:10 -0000
@@ -1,5 +1,10 @@
 2003-06-27  Michael Koch  <konqueror@gmx.de>
 
+	* gnu/java/nio/FileChannelImpl.java
+	(write): Removed.
+
+2003-06-27  Michael Koch  <konqueror@gmx.de>
+
 	* java/nio/ByteBufferImpl.java
 	(ByteBufferImpl): Made it a package-private class
 	* java/nio/CharBufferImpl.java
Index: gnu/java/nio/FileChannelImpl.java
===================================================================
RCS file: /cvs/gcc/gcc/libjava/gnu/java/nio/FileChannelImpl.java,v
retrieving revision 1.8
diff -u -b -B -r1.8 FileChannelImpl.java
--- gnu/java/nio/FileChannelImpl.java	20 Jun 2003 12:01:53 -0000	1.8
+++ gnu/java/nio/FileChannelImpl.java	27 Jun 2003 13:41:10 -0000
@@ -276,12 +276,6 @@
     return ch.buf;			 
   }
 
-  public long write (ByteBuffer[] srcs)
-    throws IOException
-  {
-    return write (srcs, 0, srcs.length);
-  }
-				   
   /**
    * msync with the disk
    */

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