[kaffe] CVS kaffe (robilad): Resynced with GNU Classpath: ito's nio fix

Kaffe CVS cvs-commits at kaffe.org
Sat Feb 19 08:29:03 PST 2005


PatchSet 5568 
Date: 2005/02/19 16:24:46
Author: robilad
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath: ito's nio fix

2005-02-19  Dalibor Topic  <robilad at kaffe.org>

Resynced with GNU inetlib.

2005-02-17  Ito Kazumitsu  <kaz at maczuka.gcd.org>

* gnu/java/nio/channels/FileChannelImpl.java (write(ByteBuffer)):
Move the position of the source buffer forward.

Members: 
	ChangeLog:1.3612->1.3613 
	libraries/javalib/gnu/java/nio/channels/FileChannelImpl.java:1.3->1.4 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.3612 kaffe/ChangeLog:1.3613
--- kaffe/ChangeLog:1.3612	Sat Feb 19 16:14:15 2005
+++ kaffe/ChangeLog	Sat Feb 19 16:24:46 2005
@@ -2,6 +2,15 @@
 
 	Resynced with GNU inetlib.
 	
+	2005-02-17  Ito Kazumitsu  <kaz at maczuka.gcd.org>
+
+	* gnu/java/nio/channels/FileChannelImpl.java (write(ByteBuffer)):
+	Move the position of the source buffer forward.
+	
+2005-02-19  Dalibor Topic  <robilad at kaffe.org>
+
+	Resynced with GNU inetlib.
+	
 	2005-02-17  Chris Burdess  <dog at gnu.org>
   	 
         * BASE64.java: Truncate encodedbyte array.
Index: kaffe/libraries/javalib/gnu/java/nio/channels/FileChannelImpl.java
diff -u kaffe/libraries/javalib/gnu/java/nio/channels/FileChannelImpl.java:1.3 kaffe/libraries/javalib/gnu/java/nio/channels/FileChannelImpl.java:1.4
--- kaffe/libraries/javalib/gnu/java/nio/channels/FileChannelImpl.java:1.3	Wed Jan 12 16:18:50 2005
+++ kaffe/libraries/javalib/gnu/java/nio/channels/FileChannelImpl.java	Sat Feb 19 16:24:48 2005
@@ -1,5 +1,5 @@
 /* FileChannelImpl.java -- 
-   Copyright (C) 2002, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2002, 2004, 2005  Free Software Foundation, Inc.
 
 This file is part of GNU Classpath.
 
@@ -191,7 +191,7 @@
       {
 	byte[] buffer = src.array();
 	write(buffer, src.arrayOffset() + src.position(), len);
-        src.position(src.position() + len);
+	src.position(src.position() + len);
       }
     else
       {




More information about the kaffe mailing list