Removed debugging for dofile from the simulation

This commit is contained in:
ollo 2019-05-15 20:17:48 +02:00
parent 70602f1095
commit 401c4fd293

View File

@ -26,8 +26,6 @@ public class DoFileFunction extends OneArgFunction {
public LuaValue call(LuaValue luaFilename) {
String filename = luaFilename.checkjstring();
System.out.println("[Nodemcu] dofile " + filename);
File f = new File(workingDir.getAbsolutePath() + File.separator + filename);
if (f.exists()) {