* Fixed BufferUtils on android when used on non bytebuffers

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@9211 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
3.0
Sha..rd 13 years ago
parent b2e086bbee
commit aa8298ecdf
  1. 2
      engine/src/core/com/jme3/util/BufferUtils.java

@ -1179,7 +1179,7 @@ public final class BufferUtils {
viewedBufferMethod = loadMethod("sun.nio.ch.DirectBuffer", "viewedBuffer");
// Apache Harmony
freeMethod = loadMethod("java.nio.DirectByteBuffer", "free");
freeMethod = loadMethod("org.apache.harmony.nio.internal.DirectBuffer", "free");
// GUN Classpath (not likely)
//finalizeMethod = loadMethod("java.nio.DirectByteBufferImpl", "finalize");

Loading…
Cancel
Save