1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-09-20 01:08:50 +02:00

Fix lines of a large include path

Summary:
D2457 and D2459 made some changes here. This little guy just needed to be touched so it could be arc lint'd to have the proper updated include paths

Sorry to spam reviewers; Evan is in Diablo 3 somewhere. :D

Test Plan: no more fatal on test everything implemented (arc unit src/infrastructure/__tests__/)

Reviewers: epriestley, jungejason, nh, csilvers

CC: aran, Koolvin

Differential Revision: https://secure.phabricator.com/D2474
This commit is contained in:
Bob Trahan 2012-05-15 12:37:34 -07:00
parent 67d4f1ef4c
commit 7a19cf5a55
2 changed files with 4 additions and 5 deletions

View file

@ -701,10 +701,9 @@ class PhabricatorRepositorySvnCommitChangeParserWorker
} }
private function parseRecursiveListFileData($file_path) { private function parseRecursiveListFileData($file_path) {
$map = array(); $map = array();
$mode = 'xml';
$mode = 'xml'; $done = false;
$done = false;
$entry = null; $entry = null;
foreach (new LinesOfALargeFile($file_path) as $lno => $line) { foreach (new LinesOfALargeFile($file_path) as $lno => $line) {
switch ($mode) { switch ($mode) {

View file

@ -15,7 +15,7 @@ phutil_require_module('phabricator', 'storage/qsprintf');
phutil_require_module('phabricator', 'storage/queryfx'); phutil_require_module('phabricator', 'storage/queryfx');
phutil_require_module('phutil', 'filesystem'); phutil_require_module('phutil', 'filesystem');
phutil_require_module('phutil', 'filesystem/linesofalargefile'); phutil_require_module('phutil', 'filesystem/linesofalarge/file');
phutil_require_module('phutil', 'filesystem/tempfile'); phutil_require_module('phutil', 'filesystem/tempfile');
phutil_require_module('phutil', 'future/exec'); phutil_require_module('phutil', 'future/exec');
phutil_require_module('phutil', 'utils'); phutil_require_module('phutil', 'utils');