/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/repofmt/knitrepo.py

  • Committer: Jelmer Vernooij
  • Date: 2008-05-29 12:27:24 UTC
  • mto: This revision was merged to the branch mainline in revision 3457.
  • Revision ID: jelmer@samba.org-20080529122724-0ih3v2f6mwb026kl
Remove deprecated Repository.revision_parents().

Show diffs side-by-side

added added

removed removed

Lines of Context:
219
219
        reconciler.reconcile()
220
220
        return reconciler
221
221
    
222
 
    @symbol_versioning.deprecated_method(symbol_versioning.one_five)
223
 
    def revision_parents(self, revision_id):
224
 
        return self._get_revision_vf().get_parents(revision_id)
225
 
 
226
222
    def _make_parents_provider(self):
227
223
        return _KnitParentsProvider(self._get_revision_vf())
228
224