mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Remove ArcanistSubversionAPI::hasMergeConflicts()
Summary: No callsites, redundant with getMergeConflicts(). Test Plan: Grepped for callsites. Reviewers: vrana Reviewed By: vrana CC: aran Differential Revision: https://secure.phabricator.com/D4093
This commit is contained in:
parent
ecdb885236
commit
c43d627cf2
1 changed files with 0 additions and 10 deletions
|
@ -46,16 +46,6 @@ final class ArcanistSubversionAPI extends ArcanistRepositoryAPI {
|
|||
return $future;
|
||||
}
|
||||
|
||||
|
||||
public function hasMergeConflicts() {
|
||||
foreach ($this->getSVNStatus() as $path => $mask) {
|
||||
if ($mask & self::FLAG_CONFLICT) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
public function getWorkingCopyStatus() {
|
||||
return $this->getSVNStatus();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue