~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/repository.py

(jelmer) Move Repository.find_text_key_references to
 VersionedFileRepository. (Jelmer Vernooij)

Show diffs side-by-side

added added

removed removed

Lines of Context:
927
927
        """
928
928
        raise NotImplementedError(self.add_signature_text)
929
929
 
930
 
    def find_text_key_references(self):
931
 
        """Find the text key references within the repository.
932
 
 
933
 
        :return: A dictionary mapping text keys ((fileid, revision_id) tuples)
934
 
            to whether they were referred to by the tree of the
935
 
            revision_id that they contain. 
936
 
        """
937
 
        raise NotImplementedError(self.find_text_key_references)
938
 
 
939
930
    def _find_parent_ids_of_revisions(self, revision_ids):
940
931
        """Find all parent ids that are mentioned in the revision graph.
941
932