Fix Call to undefined method TableDiffFormatterFullContext::_start_diff()

Bug: 57268
Change-Id: I3bf5f6690530a89f25b1716406a92524d07c4c2b
This commit is contained in:
Reedy 2013-11-19 20:09:32 +00:00
parent e0c0f65f42
commit 6204b76512

View file

@ -27,9 +27,9 @@ class TableDiffFormatterFullContext extends TableDiffFormatter {
}
// Just render the diff with no preprocessing
$this->_start_diff();
$this->_block( 1, $xlen, 1, $ylen, $diff->edits );
$end = $this->_end_diff();
$this->startDiff();
$this->block( 1, $xlen, 1, $ylen, $diff->edits );
$end = $this->endDiff();
return $end;
}