~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/revisiontree.py

  • Committer: John Arbash Meinel
  • Date: 2009-05-29 15:06:16 UTC
  • mfrom: (4392 +trunk)
  • mto: This revision was merged to the branch mainline in revision 4460.
  • Revision ID: john@arbash-meinel.com-20090529150616-m29oaesf6ekxr489
Merge bzr.dev, bringing in the gc stacking fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
        self._rules_searcher = None
46
46
 
47
47
    def supports_tree_reference(self):
48
 
        return True
 
48
        return getattr(self._repository._format, "supports_tree_reference",
 
49
            False)
49
50
 
50
51
    def get_parent_ids(self):
51
52
        """See Tree.get_parent_ids.