diff options
author | Sven Gothel <[email protected]> | 2010-03-28 01:45:00 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-03-28 01:45:00 +0100 |
commit | 9e8ba29142d83d5749fc9650715019fef3539b1d (patch) | |
tree | 9062b73c85c4facf9011b357fbda2b1195eb23a2 /src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase | |
parent | 2dc67e8f8faeb418061e0dd450b37d4cb3ce4c2f (diff) | |
parent | ea23f9505e3fcf3a5b928855eba739ad123b64f4 (diff) |
Merge branch 'master' of github.com:mbien/jogl
Diffstat (limited to 'src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase')
-rw-r--r-- | src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase b/src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase deleted file mode 100644 index 3f201c2b6..000000000 --- a/src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase +++ /dev/null @@ -1,18 +0,0 @@ -package com.sun.opengl.impl; - -public class SystemUtil { - - private static volatile boolean getenvSupported = true; - /** Wrapper for System.getenv(), which doesn't work on platforms - earlier than JDK 5 */ - public static String getenv(String variableName) { - if (getenvSupported) { - try { - return System.getenv(variableName); - } catch (Error e) { - getenvSupported = false; - } - } - return null; - } -} |