diff -r 98535ad46fc0 -r 2188f170f5b6 mercurial/graphmod.py --- a/mercurial/graphmod.py Mon Jun 13 18:20:00 2016 +0100 +++ b/mercurial/graphmod.py Mon Jun 13 18:20:00 2016 +0100 @@ -52,16 +52,6 @@ gpcache = {} - if repo.ui.configbool('experimental', 'graph-group-branches', False): - firstbranch = () - firstbranchrevset = repo.ui.config( - 'experimental', 'graph-group-branches.firstbranch', '') - if firstbranchrevset: - firstbranch = repo.revs(firstbranchrevset) - parentrevs = repo.changelog.parentrevs - revs = revset.groupbranchiter(revs, parentrevs, firstbranch) - revs = revset.baseset(revs) - for rev in revs: ctx = repo[rev] # partition into parents in the rev set and missing parents, then