Show More
@@ -133,12 +133,6 b' class changectx(object):' | |||
|
133 | 133 | return filectx(self._repo, path, fileid=fileid, |
|
134 | 134 | changectx=self, filelog=filelog) |
|
135 | 135 | |
|
136 | def filectxs(self): | |
|
137 | """generate a file context for each file in this changeset's | |
|
138 | manifest""" | |
|
139 | for f in util.sort(mf): | |
|
140 | yield self.filectx(f, fileid=mf[f]) | |
|
141 | ||
|
142 | 136 | def ancestor(self, c2): |
|
143 | 137 | """ |
|
144 | 138 | return the ancestor context of self and c2 |
General Comments 0
You need to be logged in to leave comments.
Login now