~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/remote.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-13 09:30:57 UTC
  • mto: This revision was merged to the branch mainline in revision 5863.
  • Revision ID: jelmer@samba.org-20110513093057-emzyj65139jpxayu
Use traditional (fileid, revision) entries in file graph.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1137
1137
        return RemoteStreamSource(self, to_format)
1138
1138
 
1139
1139
    @needs_read_lock
1140
 
    def get_file_graph(self, file_id):
1141
 
        parents_provider = versionedfile.PerFileParentsProvider(self.texts,
1142
 
            file_id)
1143
 
        return graph.Graph(parents_provider)
 
1140
    def get_file_graph(self):
 
1141
        return graph.Graph(self.texts)
1144
1142
 
1145
1143
    @needs_read_lock
1146
1144
    def has_revision(self, revision_id):