From 360141bc8c2fd972aeae282c9fc7bcb581dab9ab Mon Sep 17 00:00:00 2001 From: Ben Fry Date: Mon, 24 Aug 2015 08:57:10 -0400 Subject: [PATCH] those fellers should be static --- app/src/processing/app/Platform.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/src/processing/app/Platform.java b/app/src/processing/app/Platform.java index ae4b84248..f492daad7 100644 --- a/app/src/processing/app/Platform.java +++ b/app/src/processing/app/Platform.java @@ -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); } } \ No newline at end of file