/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-04-02 00:14:00 UTC
  • mfrom: (3324 +trunk)
  • mto: This revision was merged to the branch mainline in revision 3756.
  • Revision ID: andrew.bennetts@canonical.com-20080402001400-r1pqse38i03dl97w
Merge from bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
195
195
        revision_id = osutils.safe_revision_id(revision_id)
196
196
        return self.get_revision_reconcile(revision_id)
197
197
 
 
198
    @symbol_versioning.deprecated_method(symbol_versioning.one_four)
198
199
    @needs_read_lock
199
200
    def get_revision_graph(self, revision_id=None):
200
201
        """Return a dictionary containing the revision graph.
269
270
        vf = self._revision_store.get_revision_file(self.get_transaction())
270
271
        return vf
271
272
 
272
 
    def _get_history_vf(self):
273
 
        """Get a versionedfile whose history graph reflects all revisions.
274
 
 
275
 
        For knit repositories, this is the revision knit.
276
 
        """
277
 
        return self._get_revision_vf()
278
 
 
279
273
    def has_revisions(self, revision_ids):
280
274
        """See Repository.has_revisions()."""
281
275
        result = set()