~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

  • Committer: Jelmer Vernooij
  • Date: 2011-04-15 11:26:00 UTC
  • mfrom: (5757.7.7 knitpackrepo-6)
  • mto: This revision was merged to the branch mainline in revision 5801.
  • Revision ID: jelmer@samba.org-20110415112600-vrv2431lh3gi6wx2
MergeĀ knitpackrepo-6.

Show diffs side-by-side

added added

removed removed

Lines of Context:
166
166
        return ''
167
167
 
168
168
 
169
 
class WorkingTree(bzrlib.mutabletree.MutableTree,
 
169
class WorkingTree(bzrlib.mutabletree.MutableInventoryTree,
170
170
    controldir.ControlComponent):
171
171
    """Working copy tree.
172
172
 
639
639
        """Return the id of this trees root"""
640
640
        return self._inventory.root.file_id
641
641
 
642
 
    def _get_store_filename(self, file_id):
643
 
        ## XXX: badly named; this is not in the store at all
644
 
        return self.abspath(self.id2path(file_id))
645
 
 
646
642
    @needs_read_lock
647
643
    def clone(self, to_bzrdir, revision_id=None):
648
644
        """Duplicate this working tree into to_bzr, including all state.