Remove leftover console.groupEnds in execute

This commit is contained in:
Tim Mickel 2016-06-10 13:34:07 -04:00
parent 0bf9ab59a1
commit e9eb7c6e57

View file

@ -43,14 +43,12 @@ var execute = function (sequencer, thread) {
if (!opcode) {
console.warn('Could not get opcode for block: ' + currentBlockId);
console.groupEnd();
return;
}
var blockFunction = runtime.getOpcodeFunction(opcode);
if (!blockFunction) {
console.warn('Could not get implementation for opcode: ' + opcode);
console.groupEnd();
return;
}