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

  • Committer: Aaron Bentley
  • Date: 2007-08-15 01:11:27 UTC
  • mfrom: (2699 +trunk)
  • mto: This revision was merged to the branch mainline in revision 2700.
  • Revision ID: aaron.bentley@utoronto.ca-20070815011127-0il5s8oqmt26bma7
Merge bzr.dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
1114
1114
 
1115
1115
    def unlock(self):
1116
1116
        """Unlock in format 4 trees needs to write the entire dirstate."""
 
1117
        # do non-implementation specific cleanup
 
1118
        self._cleanup()
 
1119
 
1117
1120
        if self._control_files._lock_count == 1:
1118
1121
            # eventually we should do signature checking during read locks for
1119
1122
            # dirstate updates.
1494
1497
            return parent_details[1]
1495
1498
        return None
1496
1499
 
1497
 
    @symbol_versioning.deprecated_method(symbol_versioning.zero_nineteen)
 
1500
    @symbol_versioning.deprecated_method(symbol_versioning.zero_ninety)
1498
1501
    def get_weave(self, file_id):
1499
1502
        return self._get_weave(file_id)
1500
1503