/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Jelmer Vernooij
  • Date: 2010-02-13 02:15:58 UTC
  • mto: This revision was merged to the branch mainline in revision 5041.
  • Revision ID: jelmer@samba.org-20100213021558-exxfr87v0b2330co
Remove unnecessary _deserialise_inventory implementation on remote repositories.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1501
1501
        self._ensure_real()
1502
1502
        return self._real_repository._get_inventory_xml(revision_id)
1503
1503
 
1504
 
    def _deserialise_inventory(self, revision_id, xml):
1505
 
        self._ensure_real()
1506
 
        return self._real_repository._deserialise_inventory(revision_id, xml)
1507
 
 
1508
1504
    def reconcile(self, other=None, thorough=False):
1509
1505
        self._ensure_real()
1510
1506
        return self._real_repository.reconcile(other=other, thorough=thorough)