~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/groupcompress_repo.py

  • Committer: Jelmer Vernooij
  • Date: 2010-01-31 12:10:40 UTC
  • mto: This revision was merged to the branch mainline in revision 4993.
  • Revision ID: jelmer@samba.org-20100131121040-64t9ykvo2oz4pknx
rename Repository.deserialise_inventory to Repository._deserialise_inventory.

Show diffs side-by-side

added added

removed removed

Lines of Context:
882
882
            if basis_tree is not None:
883
883
                basis_tree.unlock()
884
884
 
885
 
    def deserialise_inventory(self, revision_id, bytes):
 
885
    def _deserialise_inventory(self, revision_id, bytes):
886
886
        return inventory.CHKInventory.deserialise(self.chk_bytes, bytes,
887
887
            (revision_id,))
888
888