Commit 68760aee by Andreas Tobler

[multiple changes]

2004-08-30  Tom Tromey  <tromey@redhat.com>

	* java/nio/CharBuffer.java (put): Fix typo.
	* java/nio/DoubleBuffer.java (put): Fix typo.
	* java/nio/FloatBuffer.java (put): Fix typo.
	* java/nio/IntBuffer.java (put): Fix typo.
	* java/nio/LongBuffer.java (put): Fix typo.
	* java/nio/ShortBuffer.java (put): Fix typo.

2004-08-30  Florian Weimer  <fw@deneb.enyo.de>

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

From-SVN: r86758
parent ce894603
2004-08-30 Tom Tromey <tromey@redhat.com>
* java/nio/CharBuffer.java (put): Fix typo.
* java/nio/DoubleBuffer.java (put): Fix typo.
* java/nio/FloatBuffer.java (put): Fix typo.
* java/nio/IntBuffer.java (put): Fix typo.
* java/nio/LongBuffer.java (put): Fix typo.
* java/nio/ShortBuffer.java (put): Fix typo.
2004-08-30 Florian Weimer <fw@deneb.enyo.de>
* java/nio/ByteBuffer.java (put): Fix typo.
2004-08-30 Casey Marshall <csm@gnu.org>
* java/security/DummyKeyPairGenerator.java (clone): Removed
......
......@@ -165,7 +165,7 @@ public abstract class ByteBuffer extends Buffer
{
byte[] toPut = new byte [src.remaining ()];
src.get (toPut);
src.put (toPut);
put (toPut);
}
return this;
......
......@@ -202,7 +202,7 @@ public abstract class CharBuffer extends Buffer
{
char[] toPut = new char [src.remaining ()];
src.get (toPut);
src.put (toPut);
put (toPut);
}
return this;
......
......@@ -148,7 +148,7 @@ public abstract class DoubleBuffer extends Buffer
{
double[] toPut = new double [src.remaining ()];
src.get (toPut);
src.put (toPut);
put (toPut);
}
return this;
......
......@@ -148,7 +148,7 @@ public abstract class FloatBuffer extends Buffer
{
float[] toPut = new float [src.remaining ()];
src.get (toPut);
src.put (toPut);
put (toPut);
}
return this;
......
......@@ -148,7 +148,7 @@ public abstract class IntBuffer extends Buffer
{
int[] toPut = new int [src.remaining ()];
src.get (toPut);
src.put (toPut);
put (toPut);
}
return this;
......
......@@ -148,7 +148,7 @@ public abstract class LongBuffer extends Buffer
{
long[] toPut = new long [src.remaining ()];
src.get (toPut);
src.put (toPut);
put (toPut);
}
return this;
......
......@@ -148,7 +148,7 @@ public abstract class ShortBuffer extends Buffer
{
short[] toPut = new short [src.remaining ()];
src.get (toPut);
src.put (toPut);
put (toPut);
}
return this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment