From ebadf5eec00b99e96567ba685cdfeae2005e5969 Mon Sep 17 00:00:00 2001 From: Sven Gothel Date: Wed, 5 Aug 2015 14:55:24 +0200 Subject: Remove unused jogamp.opengl.SystemUtil --- src/jogl/classes/jogamp/opengl/SystemUtil.java | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/jogl/classes/jogamp/opengl/SystemUtil.java (limited to 'src/jogl/classes/jogamp') 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; - } -} -- cgit v1.2.3