~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/groupcompress_repo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-01 08:54:08 UTC
  • mfrom: (4988.3.3 private-deserialize-inv)
  • Revision ID: pqm@pqm.ubuntu.com-20100201085408-1c990l08fmh5x3ix
(Jelmer) Make Repository.deserialise_inventory() private.

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