diff options
Diffstat (limited to 'libjava/gnu/java/nio/FloatBufferImpl.java')
| -rw-r--r-- | libjava/gnu/java/nio/FloatBufferImpl.java | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/libjava/gnu/java/nio/FloatBufferImpl.java b/libjava/gnu/java/nio/FloatBufferImpl.java index 6c77103bb2f..4acde80b747 100644 --- a/libjava/gnu/java/nio/FloatBufferImpl.java +++ b/libjava/gnu/java/nio/FloatBufferImpl.java @@ -70,26 +70,6 @@ public final class FloatBufferImpl extends FloatBuffer readOnly = copy.isReadOnly (); } - private static native float[] nio_cast (byte[] copy); - - FloatBufferImpl (byte[] copy) - { - super (copy.length, copy.length, 0, 0); - this.backing_buffer = copy != null ? nio_cast (copy) : null; - readOnly = false; - } - - private static native byte nio_get_Byte (FloatBufferImpl b, int index, int limit); - - private static native void nio_put_Byte (FloatBufferImpl b, int index, int limit, byte value); - - public ByteBuffer asByteBuffer() - { - ByteBufferImpl res = new ByteBufferImpl (backing_buffer); - res.limit ((limit () * 1) / 4); - return res; - } - public boolean isReadOnly () { return readOnly; |
