~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repofmt/knitrepo.py

  • Committer: Patch Queue Manager
  • Date: 2012-03-14 14:39:16 UTC
  • mfrom: (6027.1.18 deprecations)
  • Revision ID: pqm@pqm.ubuntu.com-20120314143916-dggf9d1d26j3kizq
(vila) Remove some code deprecated in series older than 2.4 (inclusive)
 (Vincent Ladeuil)

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.