We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0836dad commit bc51b2cCopy full SHA for bc51b2c
app/src/processing/app/Platform.java
@@ -377,17 +377,17 @@ static public boolean deleteFile(File file) throws IOException {
377
// . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
378
379
380
- public void setenv(String variable, String value) {
+ static public void setenv(String variable, String value) {
381
inst.setenv(variable, value);
382
}
383
384
385
- public String getenv(String variable) {
+ static public String getenv(String variable) {
386
return inst.getenv(variable);
387
388
389
390
- public int unsetenv(String variable) {
+ static public int unsetenv(String variable) {
391
return inst.unsetenv(variable);
392
393
0 commit comments