Replace each() with foreach()

This commit is contained in:
Aaron Carlino 2018-05-30 11:16:14 +12:00
parent 7d10c27346
commit 8e4a1ba8fa
1 changed files with 2 additions and 2 deletions

View File

@ -283,14 +283,14 @@ class DiffEngine
continue;
$matches = $ymatches[$line];
reset($matches);
while (list ($junk, $y) = each($matches))
foreach ($matches as $y)
if (empty($this->in_seq[$y])) {
$k = $this->lcs_pos($y);
assert($k > 0);
$ymids[$k] = $ymids[$k - 1];
break;
}
while (list ($junk, $y) = each($matches)) {
foreach ($matches as $y) {
if ($y > $this->seq[$k - 1]) {
assert($y < $this->seq[$k]);
// Optimization: this is a common case: