~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transform.py

  • Committer: Patch Queue Manager
  • Date: 2012-02-07 00:57:24 UTC
  • mfrom: (6405.2.18 bzr)
  • Revision ID: pqm@pqm.ubuntu.com-20120207005724-xvfawh5exf1ohusu
(jelmer) Rename Tree.inventory to Tree.root_inventory. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
2056
2056
        pass
2057
2057
 
2058
2058
    @property
 
2059
    @deprecated_method(deprecated_in((2, 5, 0)))
2059
2060
    def inventory(self):
2060
2061
        """This Tree does not use inventory as its backing data."""
2061
2062
        raise NotImplementedError(_PreviewTree.inventory)
2062
2063
 
 
2064
    @property
 
2065
    def root_inventory(self):
 
2066
        """This Tree does not use inventory as its backing data."""
 
2067
        raise NotImplementedError(_PreviewTree.root_inventory)
 
2068
 
2063
2069
    def get_root_id(self):
2064
2070
        return self._transform.final_file_id(self._transform.root)
2065
2071