1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-01-03 19:31:02 +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:
Bob Trahan 2012-12-07 18:08:27 -08:00
parent 4f615ad2a9
commit 638449b483
3 changed files with 1 additions and 5 deletions

View file

@ -23,7 +23,7 @@ final class DifferentialChangesetParser {
protected $renderCacheKey = null; protected $renderCacheKey = null;
private $handles; private $handles = array();
private $user; private $user;
private $leftSideChangesetID; private $leftSideChangesetID;

View file

@ -172,7 +172,6 @@ abstract class DifferentialChangesetRenderer {
} }
public function setNewLines(array $new_lines) { public function setNewLines(array $new_lines) {
phlog(print_r($new_lines, true));
$this->newLines = $new_lines; $this->newLines = $new_lines;
return $this; return $this;
} }
@ -181,7 +180,6 @@ abstract class DifferentialChangesetRenderer {
} }
public function setOldLines(array $old_lines) { public function setOldLines(array $old_lines) {
phlog(print_r($old_lines, true));
$this->oldLines = $old_lines; $this->oldLines = $old_lines;
return $this; return $this;
} }

View file

@ -74,8 +74,6 @@ final class DifferentialChangesetTwoUpRenderer
count($old_lines), count($old_lines),
count($new_lines)); count($new_lines));
phlog($rows);
if ($range_start === null) { if ($range_start === null) {
$range_start = 0; $range_start = 0;
} }