mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
removed some debugging code from D4117
Summary: whoops! Test Plan: no more debugging code Reviewers: epriestley, vrana Reviewed By: epriestley CC: aran, Korvin Maniphest Tasks: T2009 Differential Revision: https://secure.phabricator.com/D4121
This commit is contained in:
parent
4f615ad2a9
commit
638449b483
3 changed files with 1 additions and 5 deletions
|
@ -23,7 +23,7 @@ final class DifferentialChangesetParser {
|
|||
|
||||
protected $renderCacheKey = null;
|
||||
|
||||
private $handles;
|
||||
private $handles = array();
|
||||
private $user;
|
||||
|
||||
private $leftSideChangesetID;
|
||||
|
|
|
@ -172,7 +172,6 @@ abstract class DifferentialChangesetRenderer {
|
|||
}
|
||||
|
||||
public function setNewLines(array $new_lines) {
|
||||
phlog(print_r($new_lines, true));
|
||||
$this->newLines = $new_lines;
|
||||
return $this;
|
||||
}
|
||||
|
@ -181,7 +180,6 @@ abstract class DifferentialChangesetRenderer {
|
|||
}
|
||||
|
||||
public function setOldLines(array $old_lines) {
|
||||
phlog(print_r($old_lines, true));
|
||||
$this->oldLines = $old_lines;
|
||||
return $this;
|
||||
}
|
||||
|
|
|
@ -74,8 +74,6 @@ final class DifferentialChangesetTwoUpRenderer
|
|||
count($old_lines),
|
||||
count($new_lines));
|
||||
|
||||
phlog($rows);
|
||||
|
||||
if ($range_start === null) {
|
||||
$range_start = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue