From c8cf28994fe6867e4a16035ae7ccdc44026fd307 Mon Sep 17 00:00:00 2001 From: kbr Date: Sat, 19 Apr 2008 17:36:09 +0000 Subject: Removed Import of java.nio.* and adjusted custom Java code after fixing of GlueGen Issue 6 git-svn-id: file:///home/mbien/NetBeansProjects/JOGAMP/joal-sync/git-svn/../svn-server-sync/joal/trunk@857 03bf7f67-59de-4072-a415-9a990d468a3f --- make/joal-alc-impl-CustomJavaCode.java | 4 ++-- make/joal-alc.cfg | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/make/joal-alc-impl-CustomJavaCode.java b/make/joal-alc-impl-CustomJavaCode.java index a9ec6ee..c6f8e92 100755 --- a/make/joal-alc-impl-CustomJavaCode.java +++ b/make/joal-alc-impl-CustomJavaCode.java @@ -3,7 +3,7 @@ public java.lang.String alcGetString(ALCdevice device, int param) { throw new ALException("Call alcGetDeviceSpecifiers to fetch all available device names"); } - ByteBuffer buf = alcGetStringImpl(device, param); + java.nio.ByteBuffer buf = alcGetStringImpl(device, param); if (buf == null) { return null; } @@ -29,7 +29,7 @@ public java.lang.String[] alcGetCaptureDeviceSpecifiers() { } private java.lang.String[] getDoubleNullTerminatedString(int which) { - ByteBuffer buf = alcGetStringImpl(null, which); + java.nio.ByteBuffer buf = alcGetStringImpl(null, which); if (buf == null) { return null; } diff --git a/make/joal-alc.cfg b/make/joal-alc.cfg index 8bb623c..21f7449 100755 --- a/make/joal-alc.cfg +++ b/make/joal-alc.cfg @@ -13,7 +13,6 @@ GetProcAddressTableExpr ALProcAddressLookup.getALCProcAddressTable() ProcAddressNameExpr LP $UPPERCASE({0}) Import java.io.UnsupportedEncodingException -Import java.nio.* Import java.util.* Import net.java.games.joal.* Import net.java.games.joal.impl.* -- cgit v1.2.3