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

Split out git and bzr-specific transforms.

Merged from https://code.launchpad.net/~jelmer/brz/transform-file-id/+merge/386859

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
        else:
225
225
            self.case_sensitive = False
226
226
 
227
 
    def transform(self, pb=None):
228
 
        from ..transform import TreeTransform
229
 
        return TreeTransform(self, pb=pb)
230
 
 
231
227
    def merge_modified(self):
232
228
        return {}
233
229
 
1075
1071
    def store_uncommitted(self):
1076
1072
        raise errors.StoringUncommittedNotSupported(self)
1077
1073
 
1078
 
    def apply_inventory_delta(self, changes):
1079
 
        for (old_path, new_path, file_id, ie) in changes:
 
1074
    def _apply_transform_delta(self, changes):
 
1075
        for (old_path, new_path, ie) in changes:
1080
1076
            if old_path is not None:
1081
1077
                (index, old_subpath) = self._lookup_index(
1082
1078
                    encode_git_path(old_path))