mirror of
https://github.com/processing/processing4.git
synced 2026-02-14 10:55:38 +01:00
those fellers should be static
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user