/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 bzrlib/tree.py

  • Committer: Aaron Bentley
  • Date: 2006-11-17 07:06:38 UTC
  • mto: This revision was merged to the branch mainline in revision 2162.
  • Revision ID: aaron.bentley@utoronto.ca-20061117070638-ujbzfnqwi43gc6ef
Remove unused function

Show diffs side-by-side

added added

removed removed

Lines of Context:
457
457
 
458
458
        Iteration is done in parent-to-child order, relative to the to_tree.
459
459
        """
460
 
        def get_versioned_kind(tree, file_id):
461
 
            try:
462
 
                return tree.kind(file_id)
463
 
            except errors.NoSuchFile:
464
 
                return None
465
 
 
466
460
        to_paths = {}
467
461
        if specific_file_ids is not None:
468
462
            specific_file_ids = set(specific_file_ids)