/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: Andrew Bennetts
  • Date: 2008-01-14 22:45:15 UTC
  • mfrom: (3179 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3180.
  • Revision ID: andrew.bennetts@canonical.com-20080114224515-izp51fxci3hhopap
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
        """
266
266
        return self._get_revision_vf()
267
267
 
 
268
    def has_revisions(self, revision_ids):
 
269
        """See Repository.has_revisions()."""
 
270
        result = set()
 
271
        transaction = self.get_transaction()
 
272
        for revision_id in revision_ids:
 
273
            if self._revision_store.has_revision_id(revision_id, transaction):
 
274
                result.add(revision_id)
 
275
        return result
 
276
 
268
277
    @needs_write_lock
269
278
    def reconcile(self, other=None, thorough=False):
270
279
        """Reconcile this repository."""