Merge remote-tracking branch 'origin/master'

This commit is contained in:
MattBDev 2016-06-24 10:59:18 -04:00
commit 3a973342ae
2 changed files with 4 additions and 1 deletions

View File

@ -84,6 +84,9 @@ public class DebugExec extends SubCommand {
} }
public ScriptEngine getEngine() { public ScriptEngine getEngine() {
if (this.engine == null) {
init();
}
return this.engine; return this.engine;
} }

View File

@ -447,10 +447,10 @@ public abstract class HybridUtils {
} }
} }
} }
queue.enqueue();
return true; return true;
} }
} }
queue.enqueue();
return false; return false;
} }
} }