those fellers should be static

This commit is contained in:
Ben Fry
2015-08-24 08:57:10 -04:00
parent c7be75f82f
commit 360141bc8c

View File

@@ -377,17 +377,17 @@ public class Platform {
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
public void setenv(String variable, String value) {
static public void setenv(String variable, String value) {
inst.setenv(variable, value);
}
public String getenv(String variable) {
static public String getenv(String variable) {
return inst.getenv(variable);
}
public int unsetenv(String variable) {
static public int unsetenv(String variable) {
return inst.unsetenv(variable);
}
}