mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-13 02:12:41 +01:00
Remove "parsedHunk" property
Summary: This is never read anywhere and clearly has no effect. Test Plan: grep Reviewers: vrana, btrahan, jungejason Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D1434
This commit is contained in:
parent
8f1c7dc663
commit
05ee317555
1 changed files with 0 additions and 2 deletions
|
@ -24,7 +24,6 @@ class DifferentialChangesetParser {
|
||||||
protected $intra = array();
|
protected $intra = array();
|
||||||
protected $newRender = null;
|
protected $newRender = null;
|
||||||
protected $oldRender = null;
|
protected $oldRender = null;
|
||||||
protected $parsedHunk = false;
|
|
||||||
|
|
||||||
protected $filename = null;
|
protected $filename = null;
|
||||||
protected $missingOld = array();
|
protected $missingOld = array();
|
||||||
|
@ -179,7 +178,6 @@ class DifferentialChangesetParser {
|
||||||
}
|
}
|
||||||
|
|
||||||
public function parseHunk(DifferentialHunk $hunk) {
|
public function parseHunk(DifferentialHunk $hunk) {
|
||||||
$this->parsedHunk = true;
|
|
||||||
$lines = $hunk->getChanges();
|
$lines = $hunk->getChanges();
|
||||||
|
|
||||||
$lines = str_replace(
|
$lines = str_replace(
|
||||||
|
|
Loading…
Reference in a new issue