diff --git a/PHP/CodeCoverage/Util.php b/PHP/CodeCoverage/Util.php index 699cf7ad4..0d8cbf7b7 100644 --- a/PHP/CodeCoverage/Util.php +++ b/PHP/CodeCoverage/Util.php @@ -210,15 +210,6 @@ public static function getLinesToBeIgnored($filename, $cacheTokens = TRUE) } break; - case 'PHP_Token_INTERFACE': { - $endLine = $token->getEndLine(); - - for ($i = $token->getLine(); $i <= $endLine; $i++) { - self::$ignoredLines[$filename][$i] = TRUE; - } - } - break; - case 'PHP_Token_NAMESPACE': { self::$ignoredLines[$filename][$token->getEndLine()] = TRUE; } // Intentional fallthrough