Revert "Fixes issue where the wrong line gets highlighted"

This reverts commit 3364706262.
This commit is contained in:
Frederic G. Østby
2013-06-03 18:21:34 +02:00
parent 3364706262
commit 4baa7e364e
+1 -4
View File
@@ -186,10 +186,7 @@ class Frame implements Serializable
$lines = array_slice($lines, $start, $length, true);
}
return array_map(function($line)
{
return empty($line) ? ' ' : $line;
}, $lines);
return $lines;
}
}