diff --git a/examples/repl.js b/examples/repl.js index 3292e26..675c3e7 100644 --- a/examples/repl.js +++ b/examples/repl.js @@ -39,14 +39,6 @@ fs.mkdir(path.join('/tmp', folder), function() { dataStream = fs.createWriteStream(path.join('/tmp', folder, 'data.txt')); }); -ctrl.on('goalReached', function(state) { - console.log("Goal reached."); -}); - -ctrl.on('goalLeft', function(state) { - console.log("Goal left."); -}); - ctrl.on('controlData', function(d) { dataStream.write(d.state.x + "," + d.state.y + "," +