mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 22:29:18 +01:00
Replace Kjc compiler with jikes
This commit is contained in:
@@ -44,10 +44,8 @@ public class PdeRuntime implements PdeMessageConsumer {
|
||||
process = Runtime.getRuntime().exec(cmd + " " + className +
|
||||
" " + className +
|
||||
" " + x1 + " " + y1);
|
||||
new PdeMessageSiphon(process.getInputStream(),
|
||||
process.getErrorStream(),
|
||||
this);
|
||||
|
||||
new PdeMessageSiphon(process.getInputStream(), this);
|
||||
new PdeMessageSiphon(process.getErrorStream(), this);
|
||||
} else {
|
||||
Class c = Class.forName(className);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user