/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 breezy/transform.py

  • Committer: Breezy landing bot
  • Author(s): Jelmer Vernooij
  • Date: 2019-09-26 20:21:03 UTC
  • mfrom: (7396.1.1 no-more-has-or-had-id)
  • Revision ID: breezy.the.bot@gmail.com-20190926202103-a38dtn3aog3b5zlo
Remove the unused has_or_had_id call.

Merged from https://code.launchpad.net/~jelmer/brz/no-more-has-or-had-id/+merge/373227

Show diffs side-by-side

added added

removed removed

Lines of Context:
2133
2133
    def has_id(self, file_id):
2134
2134
        return self._has_id(file_id, self._transform._tree.has_id)
2135
2135
 
2136
 
    def has_or_had_id(self, file_id):
2137
 
        return self._has_id(file_id, self._transform._tree.has_or_had_id)
2138
 
 
2139
2136
    def _path2trans_id(self, path):
2140
2137
        # We must not use None here, because that is a valid value to store.
2141
2138
        trans_id = self._path2trans_id_cache.get(path, object)