blob: 91723b5057f16f4222d1d98e7b5fe9f34b09e290 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package com.sun.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;
}
}
|