/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: Jelmer Vernooij
  • Date: 2019-09-25 19:11:10 UTC
  • mto: This revision was merged to the branch mainline in revision 7397.
  • Revision ID: jelmer@jelmer.uk-20190925191110-k9spkvt5tor4rvtd
Remove the unused has_or_had_id call.

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)