/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/git/tree.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:
360
360
                    todo.append((store, subpath, hexsha))
361
361
        return ret
362
362
 
363
 
    def has_or_had_id(self, file_id):
364
 
        try:
365
 
            self.id2path(file_id)
366
 
        except errors.NoSuchId:
367
 
            return False
368
 
        return True
369
 
 
370
363
    def has_id(self, file_id):
371
364
        try:
372
365
            path = self.id2path(file_id)