[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:
parent
ce894603bf
commit
68760aeea9
@ -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
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user