Don't call nGetNULLValue before loading the library

This commit is contained in:
Elias Naur 2003-04-03 21:02:23 +00:00
parent 36e4c9625a
commit 5da72080f0
1 changed files with 1 additions and 1 deletions

View File

@ -91,7 +91,6 @@ public final class Sys {
private static boolean _debug;
static {
NULL = nGetNULLValue();
try {
assert false;
LIBRARY_NAME = "lwjgl";
@ -104,6 +103,7 @@ public final class Sys {
} finally {
DEBUG = _debug;
initialize();
NULL = nGetNULLValue();
}
}