/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/workingtree.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:
666
666
        path = inv.id2path(inv_file_id)
667
667
        return osutils.lexists(self.abspath(path))
668
668
 
669
 
    def has_or_had_id(self, file_id):
670
 
        if file_id == self.path2id(''):
671
 
            return True
672
 
        inv, inv_file_id = self._unpack_file_id(file_id)
673
 
        return inv.has_id(inv_file_id)
674
 
 
675
669
    def all_file_ids(self):
676
670
        """Iterate through file_ids for this tree.
677
671