~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Vincent Ladeuil
  • Date: 2012-03-14 08:34:10 UTC
  • mto: This revision was merged to the branch mainline in revision 6501.
  • Revision ID: v.ladeuil+lp@free.fr-20120314083410-knnbugxnq7owem53
Remove deprecated code

Show diffs side-by-side

added added

removed removed

Lines of Context:
488
488
 
489
489
    @needs_read_lock
490
490
    def search_missing_revision_ids(self,
491
 
            revision_id=symbol_versioning.DEPRECATED_PARAMETER,
492
491
            find_ghosts=True, revision_ids=None, if_present_ids=None,
493
492
            limit=None):
494
493
        """See InterRepository.search_missing_revision_ids()."""
495
 
        if symbol_versioning.deprecated_passed(revision_id):
496
 
            symbol_versioning.warn(
497
 
                'search_missing_revision_ids(revision_id=...) was '
498
 
                'deprecated in 2.4.  Use revision_ids=[...] instead.',
499
 
                DeprecationWarning, stacklevel=2)
500
 
            if revision_ids is not None:
501
 
                raise AssertionError(
502
 
                    'revision_ids is mutually exclusive with revision_id')
503
 
            if revision_id is not None:
504
 
                revision_ids = [revision_id]
505
 
        del revision_id
506
494
        source_ids_set = self._present_source_revisions_for(
507
495
            revision_ids, if_present_ids)
508
496
        # source_ids is the worst possible case we may need to pull.