/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: Andrew Bennetts
  • Date: 2007-10-05 01:56:16 UTC
  • mto: This revision was merged to the branch mainline in revision 2905.
  • Revision ID: andrew.bennetts@canonical.com-20071005015616-zs4yna6h5dsen33n
Remove find_bad_ancestors; it's not needed anymore.

Show diffs side-by-side

added added

removed removed

Lines of Context:
626
626
        self._ensure_real()
627
627
        return self._real_repository.fileids_altered_by_revision_ids(revision_ids)
628
628
 
629
 
    def find_bad_ancestors(self, revision_ids, file_id, vf,
630
 
                           inventory_revisions):
 
629
    def get_versioned_file_checker(self, revisions, revision_versions_cache):
631
630
        self._ensure_real()
632
 
        return self._real_repository.find_bad_ancestors(revision_ids, file_id,
633
 
            vf, inventory_revisions)
634
 
 
 
631
        return self._real_repository.get_versioned_file_checker(
 
632
            revisions, revision_versions_cache)
 
633
        
635
634
    def iter_files_bytes(self, desired_files):
636
635
        """See Repository.iter_file_bytes.
637
636
        """