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 /make/joal-alc-impl-CustomJavaCode.java | |
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
Diffstat (limited to 'make/joal-alc-impl-CustomJavaCode.java')
-rwxr-xr-x | make/joal-alc-impl-CustomJavaCode.java | 4 |
1 files changed, 2 insertions, 2 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; } |