mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01: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:
parent
67d4f1ef4c
commit
7a19cf5a55
2 changed files with 4 additions and 5 deletions
|
@ -701,10 +701,9 @@ class PhabricatorRepositorySvnCommitChangeParserWorker
|
|||
}
|
||||
|
||||
private function parseRecursiveListFileData($file_path) {
|
||||
$map = array();
|
||||
|
||||
$mode = 'xml';
|
||||
$done = false;
|
||||
$map = array();
|
||||
$mode = 'xml';
|
||||
$done = false;
|
||||
$entry = null;
|
||||
foreach (new LinesOfALargeFile($file_path) as $lno => $line) {
|
||||
switch ($mode) {
|
||||
|
|
|
@ -15,7 +15,7 @@ phutil_require_module('phabricator', 'storage/qsprintf');
|
|||
phutil_require_module('phabricator', 'storage/queryfx');
|
||||
|
||||
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', 'future/exec');
|
||||
phutil_require_module('phutil', 'utils');
|
||||
|
|
Loading…
Reference in a new issue