diff options
author | Michael Koch <konqueror@gmx.de> | 2003-03-11 10:30:52 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-03-11 10:30:52 +0000 |
commit | b772d2f5927f157e016f434b59a33090c1137c06 (patch) | |
tree | 4ef30ee00b28507236135a22d7c2c45687ab7248 /libjava/gnu/java/nio/ByteBufferImpl.java | |
parent | 37bd08f8df0003521d3da3b37a25235fd421bce6 (diff) | |
download | gcc-b772d2f5927f157e016f434b59a33090c1137c06.zip gcc-b772d2f5927f157e016f434b59a33090c1137c06.tar.gz gcc-b772d2f5927f157e016f434b59a33090c1137c06.tar.bz2 |
2003-03-11 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/ByteBufferImpl.java
(putInt): Use limit() instead of limit.
* gnu/java/nio/CharBufferImpl.java
(slice): Fixed implementation.
(subSequence): Better bounds checking.
* gnu/java/nio/MappedByteFileBuffer.java:
Import all needed classes directly.
* java/nio/ByteBuffer.java
(hashCode): New dummy method.
* java/nio/CharBuffer.java
(array_offset): New member variable.
(hasArray): Fixed documentation.
(arrayOffset): Return array_offset.
From-SVN: r64165
Diffstat (limited to 'libjava/gnu/java/nio/ByteBufferImpl.java')
-rw-r--r-- | libjava/gnu/java/nio/ByteBufferImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libjava/gnu/java/nio/ByteBufferImpl.java b/libjava/gnu/java/nio/ByteBufferImpl.java index 149dc1c..342f331 100644 --- a/libjava/gnu/java/nio/ByteBufferImpl.java +++ b/libjava/gnu/java/nio/ByteBufferImpl.java @@ -320,7 +320,7 @@ public final class ByteBufferImpl extends ByteBuffer if (readOnly) throw new ReadOnlyBufferException (); - nio_put_Short (this, position (), limit(), value); + nio_put_Short (this, position (), limit (), value); inc_pos (2); return this; } @@ -352,7 +352,7 @@ public final class ByteBufferImpl extends ByteBuffer if (readOnly) throw new ReadOnlyBufferException (); - nio_put_Int (this, position (), limit , value); + nio_put_Int (this, position (), limit (), value); inc_pos (4); return this; } |