# HG changeset patch # User Pierre-Yves David # Date 2021-12-06 20:30:32 # Node ID dc2ef4b4d9a97b9d1f603b1bb4b4e9625a4e3d52 # Parent 62e6222cc5b6c41dae9f2fe022b71cc4429c04f8 upgrade: drop some dead code Everything done by this block is now done by earlier code. So we don't need it anymore. Differential Revision: https://phab.mercurial-scm.org/D11872 diff --git a/mercurial/upgrade.py b/mercurial/upgrade.py --- a/mercurial/upgrade.py +++ b/mercurial/upgrade.py @@ -85,9 +85,6 @@ def upgraderepo( ) removed_actions = upgrade_actions.find_format_downgrades(repo) - removedreqs = repo.requirements - newreqs - addedreqs = newreqs - repo.requirements - # check if we need to touch revlog and if so, which ones touched_revlogs = set() @@ -159,20 +156,6 @@ def upgraderepo( elif msg_issued >= 1: ui.status((b"\n")) - # check the consistency of the revlog selection with the planned action - - if touched_revlogs != upgrade_engine.UPGRADE_ALL_REVLOGS: - incompatible = upgrade_actions.RECLONES_REQUIREMENTS & ( - removedreqs | addedreqs - ) - if incompatible: - msg = _( - b'ignoring revlogs selection flags, format requirements ' - b'change: %s\n' - ) - ui.warn(msg % b', '.join(sorted(incompatible))) - touched_revlogs = upgrade_engine.UPGRADE_ALL_REVLOGS - upgrade_op = upgrade_actions.UpgradeOperation( ui, newreqs,