1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-10 00:42:40 +01:00

Remove "haveUncommittedChanges" property from "arc diff"

Summary: Ref T13544. This property is private and has no writers.

Test Plan: Grepped for symbol.

Maniphest Tasks: T13544

Differential Revision: https://secure.phabricator.com/D21299
This commit is contained in:
epriestley 2020-05-30 15:25:43 -07:00
parent d0eb822e37
commit bb81172eb7

View file

@ -16,7 +16,6 @@ final class ArcanistDiffWorkflow extends ArcanistWorkflow {
private $testResults;
private $diffID;
private $revisionID;
private $haveUncommittedChanges = false;
private $diffPropertyFutures = array();
private $commitMessageFromRevision;
private $hitAutotargets;
@ -1132,10 +1131,6 @@ EOTEXT
return false;
}
if ($this->haveUncommittedChanges) {
return false;
}
if ($this->getArgument('no-amend')) {
return false;
}