diff options
author | AidenRushbrooke <72034940+AidenRushbrooke@users.noreply.github.com> | 2021-12-05 03:27:18 +0000 |
---|---|---|
committer | AidenRushbrooke <72034940+AidenRushbrooke@users.noreply.github.com> | 2021-12-05 03:27:18 +0000 |
commit | 9e6c89f1fa93287104381e02f0bbbdd6060a9382 (patch) | |
tree | 65a26fbbccb0172805b131b7100ffcabb7790da3 /src/Compiler/ExecuteC.java | |
parent | 43909b350b9084ed33f121a15c5770224cbdc79f (diff) | |
download | esotericFORTRAN-9e6c89f1fa93287104381e02f0bbbdd6060a9382.tar.gz esotericFORTRAN-9e6c89f1fa93287104381e02f0bbbdd6060a9382.zip |
Added subroutines and comments for most files
Diffstat (limited to 'src/Compiler/ExecuteC.java')
-rw-r--r-- | src/Compiler/ExecuteC.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Compiler/ExecuteC.java b/src/Compiler/ExecuteC.java index fbc7ade..128f541 100644 --- a/src/Compiler/ExecuteC.java +++ b/src/Compiler/ExecuteC.java @@ -69,7 +69,6 @@ public class ExecuteC { public Boolean compileC(){ try{ - String s= null; Process p; if (System.getProperty("os.name").equals("Linux")) { p = Runtime.getRuntime().exec(String.format( @@ -86,7 +85,7 @@ public class ExecuteC { BufferedReader stdError = new BufferedReader(new InputStreamReader(p.getErrorStream())); boolean error=false; - while ((s = stdError.readLine()) != null) { + while ((stdError.readLine()) != null) { error=true; } return error; |