blob: f686bea92c714cc9a0401a43da91711b52b2e1ab (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.jogamp.opengl.impl;
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;
}
}
|