Skip to content

Commit 66f29b9

Browse files
authored
Remove previous fix for #488
1 parent 073a127 commit 66f29b9

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/CodeCoverage.php

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -370,14 +370,6 @@ public function append(array $data, $id = null, $append = true, $linesToBeCovere
370370
if (empty($this->data[$file][$k]) || !in_array($id, $this->data[$file][$k])) {
371371
$this->data[$file][$k][] = $id;
372372
}
373-
} else if ($v == Driver::LINE_NOT_EXECUTED) {
374-
if (!isset($this->data[$file][$k])) {
375-
$this->data[$file][$k] = [];
376-
}
377-
} else if ($v == Driver::LINE_NOT_EXECUTABLE) {
378-
if (!isset($this->data[$file][$k])) {
379-
$this->data[$file][$k] = null;
380-
}
381373
}
382374
}
383375
}

0 commit comments

Comments
 (0)