diff options
author | Michael Koch <konqueror@gmx.de> | 2003-05-09 07:55:59 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-05-09 07:55:59 +0000 |
commit | 2c478ce37c601f4a6a5f39aebe32aaa236ffebf6 (patch) | |
tree | 16dd377894dfcb8d80f85ad93c37bb5fb9d4fdf0 /libjava/gnu/java/nio/natByteBufferImpl.cc | |
parent | 44db872cf5e9f65d8968a5e3f4c88d7886c0ca42 (diff) | |
download | gcc-2c478ce37c601f4a6a5f39aebe32aaa236ffebf6.zip gcc-2c478ce37c601f4a6a5f39aebe32aaa236ffebf6.tar.gz gcc-2c478ce37c601f4a6a5f39aebe32aaa236ffebf6.tar.bz2 |
2003-05-09 Michael Koch <konqueror@gmx.de>
* gnu/java/nio/ByteBufferImpl.java
(nio_cast): Removed.
(ByteBufferImpl): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
(asByteBuffer): Removed.
(asCharBuffer): Removed implementation and throw exception.
(asShortBuffer): Likewise.
(asIntBuffer): Likewise.
(asLongBuffer): Likewise.
(asFloatBuffer): Likewise.
(asDoubleBuffer): Likewise.
* gnu/java/nio/CharBufferImpl.java
(CharBufferImpl): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
(asByteBuffer): Removed.
* gnu/java/nio/DoubleBufferImpl.java
(DoubleBufferImpl): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
(asByteBuffer): Removed.
* gnu/java/nio/FloatBufferImpl.java
(FloatBufferImpl): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
(asByteBuffer): Removed.
* gnu/java/nio/IntBufferImpl.java
(IntBufferImpl): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
(asByteBuffer): Removed.
* gnu/java/nio/LongBufferImpl.java
(LongBufferImpl): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
(asByteBuffer): Removed.
* gnu/java/nio/ShortBufferImpl.java
(ShortBufferImpl): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
(asByteBuffer): Removed.
* gnu/java/nio/natByteBufferImpl.cc
(nio_cast): Removed.
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
* gnu/java/nio/natCharBufferImpl.cc
(nio_get_Byte): Removed.
(nio_put_Byte): Removed.
From-SVN: r66626
Diffstat (limited to 'libjava/gnu/java/nio/natByteBufferImpl.cc')
-rw-r--r-- | libjava/gnu/java/nio/natByteBufferImpl.cc | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/libjava/gnu/java/nio/natByteBufferImpl.cc b/libjava/gnu/java/nio/natByteBufferImpl.cc index 2bb1e41..c6ba456 100644 --- a/libjava/gnu/java/nio/natByteBufferImpl.cc +++ b/libjava/gnu/java/nio/natByteBufferImpl.cc @@ -15,53 +15,6 @@ details. */ #include <gnu/java/nio/ByteBufferImpl.h> -JArray<jbyte>* -gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jbyte>*) -{ - return NULL; -} - -JArray<jbyte>* -gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jshort>*) -{ - return NULL; -} - -JArray<jbyte>* -gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jint>*) -{ - return NULL; -} - -JArray<jbyte>* -gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jlong>*) -{ - return NULL; -} - -JArray<jbyte>* -gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jchar>*) -{ - return NULL; -} - -JArray<jbyte>* -gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jfloat>*) -{ - return NULL; -} - -JArray<jbyte>* -gnu::java::nio::ByteBufferImpl::nio_cast(JArray<jdouble>*) -{ - return NULL; -} - -void -gnu::java::nio::ByteBufferImpl::nio_put_Byte(gnu::java::nio::ByteBufferImpl*, jint, jint, jbyte) -{ -} - void gnu::java::nio::ByteBufferImpl::nio_put_Char(gnu::java::nio::ByteBufferImpl*, jint, jint, jchar) { @@ -92,12 +45,6 @@ gnu::java::nio::ByteBufferImpl::nio_put_Double(gnu::java::nio::ByteBufferImpl*, { } -jbyte -gnu::java::nio::ByteBufferImpl::nio_get_Byte(gnu::java::nio::ByteBufferImpl*, jint, jint) -{ - return 0; -} - jchar gnu::java::nio::ByteBufferImpl::nio_get_Char(gnu::java::nio::ByteBufferImpl*, jint, jint) { |