diff options
author | kbr <[email protected]> | 2008-04-19 17:36:09 +0000 |
---|---|---|
committer | kbr <[email protected]> | 2008-04-19 17:36:09 +0000 |
commit | c8cf28994fe6867e4a16035ae7ccdc44026fd307 (patch) | |
tree | 844a02a4d7980009c94b7a5944db0e2415e74177 | |
parent | 90f17c3c85fce31e88f1215b2eba240cc9c43f9e (diff) |
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
-rwxr-xr-x | make/joal-alc-impl-CustomJavaCode.java | 4 | ||||
-rwxr-xr-x | 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.* |