[kaffe] CVS kaffe (dalibor): Resynced with GNU Classpath: Fixed a typo in java/nio/ByteBuffer.java

Kaffe CVS cvs-commits at kaffe.org
Sat Aug 14 10:45:55 PDT 2004


PatchSet 5062 
Date: 2004/08/14 17:32:03
Author: dalibor
Branch: HEAD
Tag: (none) 
Log:
Resynced with GNU Classpath: Fixed a typo in java/nio/ByteBuffer.java

2004-08-14  Dalibor Topic  <robilad at kaffe.org>

        * libraries/javalib/java/nio/ByteBuffer.java:
        Resynced with GNU Classpath.

        2004-08-09  Florian Weimer  <fw at deneb.enyo.de>

        * java/nio/ByteBuffer.java (put): Fix typo.

Members: 
	ChangeLog:1.2620->1.2621 
	libraries/javalib/java/nio/ByteBuffer.java:1.11->1.12 

Index: kaffe/ChangeLog
diff -u kaffe/ChangeLog:1.2620 kaffe/ChangeLog:1.2621
--- kaffe/ChangeLog:1.2620	Sat Aug 14 16:59:48 2004
+++ kaffe/ChangeLog	Sat Aug 14 17:32:03 2004
@@ -1,5 +1,14 @@
 2004-08-14  Dalibor Topic  <robilad at kaffe.org>
 
+	* libraries/javalib/java/nio/ByteBuffer.java:
+	Resynced with GNU Classpath.
+
+	2004-08-09  Florian Weimer  <fw at deneb.enyo.de>
+
+        * java/nio/ByteBuffer.java (put): Fix typo.
+
+2004-08-14  Dalibor Topic  <robilad at kaffe.org>
+
 	* libraries/javalib/java/net/URL.java:
 	Resynced with GNU Classpath.
 
Index: kaffe/libraries/javalib/java/nio/ByteBuffer.java
diff -u kaffe/libraries/javalib/java/nio/ByteBuffer.java:1.11 kaffe/libraries/javalib/java/nio/ByteBuffer.java:1.12
--- kaffe/libraries/javalib/java/nio/ByteBuffer.java:1.11	Tue Jun 15 17:39:09 2004
+++ kaffe/libraries/javalib/java/nio/ByteBuffer.java	Sat Aug 14 17:32:07 2004
@@ -165,7 +165,7 @@
       {
         byte[] toPut = new byte [src.remaining ()];
         src.get (toPut);
-        src.put (toPut);
+        put (toPut);
       }
 
     return this;




More information about the kaffe mailing list