Show More
@@ -134,8 +134,7 b' CHANGE_TYPE_PARENTS = "parents"' | |||||
134 | CHANGE_TYPE_FILES = "files" |
|
134 | CHANGE_TYPE_FILES = "files" | |
135 |
|
135 | |||
136 |
|
136 | |||
137 | @interfaceutil.implementer(intdirstate.idirstate) |
|
137 | class DirState: | |
138 | class dirstate: |
|
|||
139 | # used by largefile to avoid overwritting transaction callback |
|
138 | # used by largefile to avoid overwritting transaction callback | |
140 | _tr_key_suffix = b'' |
|
139 | _tr_key_suffix = b'' | |
141 |
|
140 | |||
@@ -1807,3 +1806,6 b' class dirstate:' | |||||
1807 | entry = self.get_entry(f) |
|
1806 | entry = self.get_entry(f) | |
1808 | if not entry.p1_tracked: |
|
1807 | if not entry.p1_tracked: | |
1809 | yield missing_from_ds % (f, node.short(p1)) |
|
1808 | yield missing_from_ds % (f, node.short(p1)) | |
|
1809 | ||||
|
1810 | ||||
|
1811 | dirstate = interfaceutil.implementer(intdirstate.idirstate)(DirState) |
General Comments 0
You need to be logged in to leave comments.
Login now