From 3f72e907e869370b98dc7519ae5fc53681376450 Mon Sep 17 00:00:00 2001 From: Michael Bien Date: Sat, 27 Mar 2010 23:28:04 +0100 Subject: refactoring part 3 (impl package): renamed com.sun.opengl -> com.jogamp.opengl. --- .../classes/com/sun/opengl/impl/SystemUtil.java.javase | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase (limited to 'src/jogl/classes/com/sun/opengl/impl/SystemUtil.java.javase') 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; - } -} -- cgit v1.2.3