~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Aaron Bentley
  • Date: 2008-06-06 16:40:46 UTC
  • mfrom: (3482 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3483.
  • Revision ID: aaron@aaronbentley.com-20080606164046-ghbxplxuhtpcb9iz
Merge with bzr.dev

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