Skip to content

Commit

Permalink
Remove superfluous break
Browse files Browse the repository at this point in the history
The break is unreachable.

Co-Authored-By: driusan <driusan@gmail.com>
  • Loading branch information
ircmaxell and driusan committed Apr 26, 2019
1 parent 008d647 commit 27fec29
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/VM.php
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,6 @@ public function run(Block $block): int {
$this->context->push($frame);
$frame = $new;
goto restart;
break;
default:
throw new \LogicException("VM OpCode Not Implemented: " . $op->getType());
}
Expand Down

0 comments on commit 27fec29

Please sign in to comment.