Skip to content

Commit

Permalink
Addresses #65, if the root cause is what I think it is.
Browse files Browse the repository at this point in the history
  • Loading branch information
marcdownie committed May 24, 2015
1 parent 492bb57 commit 10879e3
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion fieldjython/src/fieldjython/FieldJython.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,12 @@
import java.io.PrintWriter;
import java.io.StringWriter;
import java.io.Writer;
import java.util.*;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
import java.util.concurrent.locks.Lock;
import java.util.concurrent.locks.ReentrantLock;
import java.util.function.Consumer;
import java.util.function.Supplier;
import java.util.regex.Matcher;
Expand All @@ -40,6 +45,7 @@ public class FieldJython extends Execution {



Lock lock = new ReentrantLock();

public FieldJython(Box root) {
super(null);
Expand All @@ -65,6 +71,11 @@ public Object middle(boolean isEnding) {

Log.log("startup.jython", "Jython plugin has finished starting up ");


new Thread(() -> {
new PythonInterpreter();
}).start();

}

private Stream<Box> selection() {
Expand Down

0 comments on commit 10879e3

Please sign in to comment.