summaryrefslogtreecommitdiffstats
path: root/libjava/gnu/java/nio
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/gnu/java/nio')
-rw-r--r--libjava/gnu/java/nio/natDoubleBufferImpl.cc33
-rw-r--r--libjava/gnu/java/nio/natFloatBufferImpl.cc33
-rw-r--r--libjava/gnu/java/nio/natIntBufferImpl.cc33
-rw-r--r--libjava/gnu/java/nio/natLongBufferImpl.cc33
-rw-r--r--libjava/gnu/java/nio/natShortBufferImpl.cc33
5 files changed, 0 insertions, 165 deletions
diff --git a/libjava/gnu/java/nio/natDoubleBufferImpl.cc b/libjava/gnu/java/nio/natDoubleBufferImpl.cc
deleted file mode 100644
index 6c66a337417..00000000000
--- a/libjava/gnu/java/nio/natDoubleBufferImpl.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// natDoubleBufferImpl.cc
-
-/* Copyright (C) 2002, 2003 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#include <config.h>
-
-#include <gcj/cni.h>
-#include <jvm.h>
-
-#include <gnu/java/nio/DoubleBufferImpl.h>
-
-JArray<jdouble>*
-gnu::java::nio::DoubleBufferImpl::nio_cast(JArray<jbyte>*)
-{
- return NULL;
-}
-
-void
-gnu::java::nio::DoubleBufferImpl::nio_put_Byte(gnu::java::nio::DoubleBufferImpl*, jint, jint, jbyte)
-{
-}
-
-jbyte
-gnu::java::nio::DoubleBufferImpl::nio_get_Byte(gnu::java::nio::DoubleBufferImpl*, jint, jint)
-{
- return 0;
-}
diff --git a/libjava/gnu/java/nio/natFloatBufferImpl.cc b/libjava/gnu/java/nio/natFloatBufferImpl.cc
deleted file mode 100644
index 9785454634c..00000000000
--- a/libjava/gnu/java/nio/natFloatBufferImpl.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// natFloatBufferImpl.cc
-
-/* Copyright (C) 2002, 2003 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#include <config.h>
-
-#include <gcj/cni.h>
-#include <jvm.h>
-
-#include <gnu/java/nio/FloatBufferImpl.h>
-
-JArray<jfloat>*
-gnu::java::nio::FloatBufferImpl::nio_cast(JArray<jbyte>*)
-{
- return NULL;
-}
-
-void
-gnu::java::nio::FloatBufferImpl::nio_put_Byte(gnu::java::nio::FloatBufferImpl*, jint, jint, jbyte)
-{
-}
-
-jbyte
-gnu::java::nio::FloatBufferImpl::nio_get_Byte(gnu::java::nio::FloatBufferImpl*, jint, jint)
-{
- return 0;
-}
diff --git a/libjava/gnu/java/nio/natIntBufferImpl.cc b/libjava/gnu/java/nio/natIntBufferImpl.cc
deleted file mode 100644
index eff70f838bb..00000000000
--- a/libjava/gnu/java/nio/natIntBufferImpl.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// natIntBufferImpl.cc
-
-/* Copyright (C) 2002, 2003 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#include <config.h>
-
-#include <gcj/cni.h>
-#include <jvm.h>
-
-#include <gnu/java/nio/IntBufferImpl.h>
-
-JArray<jint>*
-gnu::java::nio::IntBufferImpl::nio_cast(JArray<jbyte>*)
-{
- return NULL;
-}
-
-void
-gnu::java::nio::IntBufferImpl::nio_put_Byte(gnu::java::nio::IntBufferImpl*, jint, jint, jbyte)
-{
-}
-
-jbyte
-gnu::java::nio::IntBufferImpl::nio_get_Byte(gnu::java::nio::IntBufferImpl*, jint, jint)
-{
- return 0;
-}
diff --git a/libjava/gnu/java/nio/natLongBufferImpl.cc b/libjava/gnu/java/nio/natLongBufferImpl.cc
deleted file mode 100644
index a84248136e5..00000000000
--- a/libjava/gnu/java/nio/natLongBufferImpl.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// natLongBufferImpl.cc
-
-/* Copyright (C) 2002, 2003 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#include <config.h>
-
-#include <gcj/cni.h>
-#include <jvm.h>
-
-#include <gnu/java/nio/LongBufferImpl.h>
-
-JArray<jlong>*
-gnu::java::nio::LongBufferImpl::nio_cast(JArray<jbyte>*)
-{
- return NULL;
-}
-
-void
-gnu::java::nio::LongBufferImpl::nio_put_Byte(gnu::java::nio::LongBufferImpl*, jint, jint, jbyte)
-{
-}
-
-jbyte
-gnu::java::nio::LongBufferImpl::nio_get_Byte(gnu::java::nio::LongBufferImpl*, jint, jint)
-{
- return 0;
-}
diff --git a/libjava/gnu/java/nio/natShortBufferImpl.cc b/libjava/gnu/java/nio/natShortBufferImpl.cc
deleted file mode 100644
index 188bff9575e..00000000000
--- a/libjava/gnu/java/nio/natShortBufferImpl.cc
+++ /dev/null
@@ -1,33 +0,0 @@
-// natShortBufferImpl.cc
-
-/* Copyright (C) 2002, 2003 Free Software Foundation
-
- This file is part of libgcj.
-
-This software is copyrighted work licensed under the terms of the
-Libgcj License. Please consult the file "LIBGCJ_LICENSE" for
-details. */
-
-#include <config.h>
-
-#include <gcj/cni.h>
-#include <jvm.h>
-
-#include <gnu/java/nio/ShortBufferImpl.h>
-
-JArray<jshort>*
-gnu::java::nio::ShortBufferImpl::nio_cast(JArray<jbyte>*)
-{
- return NULL;
-}
-
-void
-gnu::java::nio::ShortBufferImpl::nio_put_Byte(gnu::java::nio::ShortBufferImpl*, jint, jint, jbyte)
-{
-}
-
-jbyte
-gnu::java::nio::ShortBufferImpl::nio_get_Byte(gnu::java::nio::ShortBufferImpl*, jint, jint)
-{
- return 0;
-}
OpenPOWER on IntegriCloud