[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
This commit is contained in:
Andreas Tobler 2004-08-30 13:41:55 +02:00
parent ce894603bf
commit 68760aeea9
8 changed files with 20 additions and 7 deletions

View File

@ -1,3 +1,16 @@
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

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;