diff options
author | Michael Koch <konqueror@gmx.de> | 2003-05-19 06:59:23 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-05-19 06:59:23 +0000 |
commit | 10832fce7c6b2de6ef8af9b1f7a123dfdb6fb7a9 (patch) | |
tree | 2bc55e0ef3fca053d995f689e0812505f3e152b2 /libjava/java/nio/ByteBuffer.java | |
parent | 307b599c91ee93049fd69228b9d59b6ea2e030ef (diff) | |
download | gcc-10832fce7c6b2de6ef8af9b1f7a123dfdb6fb7a9.zip gcc-10832fce7c6b2de6ef8af9b1f7a123dfdb6fb7a9.tar.gz gcc-10832fce7c6b2de6ef8af9b1f7a123dfdb6fb7a9.tar.bz2 |
2003-05-19 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/ByteBufferImpl.java
(putLong): Fixed conversion to bytes.
(putDouble): Fixed conversion to bytes.
* gnu/java/nio/DirectByteBufferImpl.java
(putLong): Fixed conversion to bytes.
(putDouble): Fixed conversion to bytes.
* gnu/java/nio/FileLockImpl.java
(isValid): Reformatted.
* java/nio/Buffer.java
(Buffer): Fixed off-by-one bug in handling mark.
* java/nio/ByteBuffer.java:
Added newline.
* java/nio/CharBuffer.java
(toString): Don't use relative get to get string data.
From-SVN: r66946
Diffstat (limited to 'libjava/java/nio/ByteBuffer.java')
-rw-r--r-- | libjava/java/nio/ByteBuffer.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libjava/java/nio/ByteBuffer.java b/libjava/java/nio/ByteBuffer.java index 66c31ed..cb743c7 100644 --- a/libjava/java/nio/ByteBuffer.java +++ b/libjava/java/nio/ByteBuffer.java @@ -63,6 +63,7 @@ public abstract class ByteBuffer extends Buffer this.backing_buffer = buffer; this.array_offset = offset; } + /** * Allocates a new direct byte buffer. */ |