~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/foreign.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-02-17 17:42:03 UTC
  • mfrom: (5035.2.4 nomoreserialiseinv)
  • Revision ID: pqm@pqm.ubuntu.com-20100217174203-bd8elqnhq6w48xb2
(Jelmer) Remove Repository._serialise_inventory_to_{lines,string}.

Show diffs side-by-side

added added

removed removed

Lines of Context:
225
225
        """Get the default mapping for this repository."""
226
226
        raise NotImplementedError(self.get_default_mapping)
227
227
 
228
 
    def _get_inventory_xml(self, revision_id):
229
 
        """See Repository._get_inventory_xml()."""
230
 
        return self._serialise_inventory(self.get_inventory(revision_id))
231
 
 
232
228
 
233
229
class ForeignBranch(Branch):
234
230
    """Branch that exists in a foreign version control system."""