/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/bzr/inventorytree.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:
176
176
        inventory, file_id = self._unpack_file_id(file_id)
177
177
        return inventory.has_id(file_id)
178
178
 
179
 
    def has_or_had_id(self, file_id):
180
 
        inventory, file_id = self._unpack_file_id(file_id)
181
 
        return inventory.has_id(file_id)
182
 
 
183
179
    def all_file_ids(self):
184
180
        return {entry.file_id for path, entry in self.iter_entries_by_dir()}
185
181