~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

(Robert Collins, John Meinel) Change WorkingTree.get_root_id to not trigger read_working_inventory and instead use the one inside the current transaction.

Show diffs side-by-side

added added

removed removed

Lines of Context:
497
497
                parents.append(l.rstrip('\n'))
498
498
        return parents
499
499
 
 
500
    @needs_read_lock
500
501
    def get_root_id(self):
501
502
        """Return the id of this trees root"""
502
 
        inv = self.read_working_inventory()
503
 
        return inv.root.file_id
 
503
        return self._inventory.root.file_id
504
504
        
505
505
    def _get_store_filename(self, file_id):
506
506
        ## XXX: badly named; this is not in the store at all