aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2015-08-05 14:55:24 +0200
committerSven Gothel <[email protected]>2015-08-05 14:55:24 +0200
commitebadf5eec00b99e96567ba685cdfeae2005e5969 (patch)
treed0efe059c2a65c8a99c6373cf7370f25ea4be2a7 /src/jogl/classes/jogamp
parent4ff4f735c421ef343a8c447fa699c01444bd5e9b (diff)
Remove unused jogamp.opengl.SystemUtil
Diffstat (limited to 'src/jogl/classes/jogamp')
-rw-r--r--src/jogl/classes/jogamp/opengl/SystemUtil.java18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/jogl/classes/jogamp/opengl/SystemUtil.java b/src/jogl/classes/jogamp/opengl/SystemUtil.java
deleted file mode 100644
index e7f078079..000000000
--- a/src/jogl/classes/jogamp/opengl/SystemUtil.java
+++ /dev/null
@@ -1,18 +0,0 @@
-package jogamp.opengl;
-
-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(final String variableName) {
- if (getenvSupported) {
- try {
- return System.getenv(variableName);
- } catch (final Error e) {
- getenvSupported = false;
- }
- }
- return null;
- }
-}