blob: ab42de359f2b91d21150162221dce242045f636e (
plain)
1
2
3
4
5
6
7
8
9
10
|
package jogamp.opengl;
public class SystemUtil {
/** Wrapper for System.getenv(), which doesn't work on platforms
earlier than JDK 5 */
public static String getenv(String variableName) {
return null;
}
}
|