/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/pack_repo.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-24 01:08:12 UTC
  • mfrom: (3948.3.9 deprecation)
  • Revision ID: pqm@pqm.ubuntu.com-20090324010812-lrfx6zoeu7q0fftv
(mbp) remove code deprecated up to 1.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
2131
2131
            pb.finished()
2132
2132
        return result
2133
2133
 
2134
 
    @symbol_versioning.deprecated_method(symbol_versioning.one_one)
2135
 
    def get_parents(self, revision_ids):
2136
 
        """See graph._StackedParentsProvider.get_parents."""
2137
 
        parent_map = self.get_parent_map(revision_ids)
2138
 
        return [parent_map.get(r, None) for r in revision_ids]
2139
 
 
2140
2134
    def _make_parents_provider(self):
2141
2135
        return graph.CachingParentsProvider(self)
2142
2136