/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/transform.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-08-29 02:15:55 UTC
  • mfrom: (1551.19.50 Aaron's mergeable stuff)
  • Revision ID: pqm@pqm.ubuntu.com-20080829021555-m0ewn41ljtx2z0pa
Remove unused kind_change variable from TT._apply_removals (abentley)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1336
1336
        """
1337
1337
        tree_paths = list(self._tree_path_ids.iteritems())
1338
1338
        tree_paths.sort(reverse=True)
1339
 
        kind_changes = set()
1340
1339
        child_pb = bzrlib.ui.ui_factory.nested_progress_bar()
1341
1340
        try:
1342
1341
            for num, data in enumerate(tree_paths):
1357
1356
                        self.rename_count += 1
1358
1357
        finally:
1359
1358
            child_pb.finished()
1360
 
        return kind_changes
1361
1359
 
1362
1360
    def _apply_insertions(self, mover):
1363
1361
        """Perform tree operations that insert directory/inventory names.
1368
1366
 
1369
1367
        If inventory_delta is None, no inventory delta is calculated, and
1370
1368
        no list of modified paths is returned.
1371
 
 
1372
 
        kind_changes is a set of trans ids where the entry has changed
1373
 
        kind, and so an inventory delta entry should be created for them.
1374
1369
        """
1375
1370
        new_paths = self.new_paths(filesystem_only=True)
1376
1371
        modified_paths = []