diff options
author | Sven Gothel <[email protected]> | 2011-07-24 11:50:34 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-07-24 11:50:34 +0200 |
commit | 2be84ffcc62e8be16b1bba17569a9b2d42269336 (patch) | |
tree | aef478d9afe9443cfcf3c4c26e644c97be2cf63a /src/java/jogamp/common | |
parent | 869c49c22573147c94b1e6d931c2cff696a54a47 (diff) |
Android: Remove native (fake) detection
Diffstat (limited to 'src/java/jogamp/common')
-rw-r--r-- | src/java/jogamp/common/os/MachineDescriptionRuntime.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/java/jogamp/common/os/MachineDescriptionRuntime.java b/src/java/jogamp/common/os/MachineDescriptionRuntime.java index 0438d30..1413705 100644 --- a/src/java/jogamp/common/os/MachineDescriptionRuntime.java +++ b/src/java/jogamp/common/os/MachineDescriptionRuntime.java @@ -119,17 +119,6 @@ public class MachineDescriptionRuntime { getAlignmentPointerImpl()); } - public static boolean isAndroid() { - try { - NativeLibrary.ensureNativeLibLoaded(); - return isAndroidImpl(); - } catch (UnsatisfiedLinkError err) { - return AndroidVersion.isAvailable; - } - } - - private static native boolean isAndroidImpl(); - private static native int getPointerSizeInBytesImpl(); private static native long getPageSizeInBytesImpl(); |