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

  • Committer: Ian Clatworthy
  • Date: 2008-07-02 01:40:02 UTC
  • mfrom: (3398.1.34 bzr.properties)
  • mto: This revision was merged to the branch mainline in revision 3516.
  • Revision ID: ian.clatworthy@canonical.com-20080702014002-2g5pg30ua32z8hrc
Rule-based preferences (Ian Clatworthy)

Show diffs side-by-side

added added

removed removed

Lines of Context:
246
246
            # permitted to do this.
247
247
            self._set_inventory(_inventory, dirty=False)
248
248
        self._detect_case_handling()
 
249
        self._rules_searcher = None
249
250
 
250
251
    def _detect_case_handling(self):
251
252
        wt_trans = self.bzrdir.get_workingtree_transport(None)
2463
2464
        """
2464
2465
        return
2465
2466
 
 
2467
    @needs_read_lock
 
2468
    def _get_rules_searcher(self, default_searcher):
 
2469
        """See Tree._get_rules_searcher."""
 
2470
        if self._rules_searcher is None:
 
2471
            self._rules_searcher = super(WorkingTree,
 
2472
                self)._get_rules_searcher(default_searcher)
 
2473
        return self._rules_searcher
 
2474
 
2466
2475
 
2467
2476
class WorkingTree2(WorkingTree):
2468
2477
    """This is the Format 2 working tree.