~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/workingtree.py

(mbp) more integrated 0.15 fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
2290
2290
        self.set_conflicts(un_resolved)
2291
2291
        return un_resolved, resolved
2292
2292
 
 
2293
    def _validate(self):
 
2294
        """Validate internal structures.
 
2295
 
 
2296
        This is meant mostly for the test suite. To give it a chance to detect
 
2297
        corruption after actions have occurred. The default implementation is a
 
2298
        just a no-op.
 
2299
 
 
2300
        :return: None. An exception should be raised if there is an error.
 
2301
        """
 
2302
        return
 
2303
 
2293
2304
 
2294
2305
class WorkingTree2(WorkingTree):
2295
2306
    """This is the Format 2 working tree.