mercurial/graphmod.py
changeset 29348 2188f170f5b6
parent 29347 98535ad46fc0
child 31023 aea06029919e
--- 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