##// END OF EJS Templates
context: get rid of unused changectx.filectxs() method
Dirkjan Ochtman -
r6846:54b7c795 default
parent child Browse files
Show More
@@ -133,12 +133,6 b' class changectx(object):'
133 return filectx(self._repo, path, fileid=fileid,
133 return filectx(self._repo, path, fileid=fileid,
134 changectx=self, filelog=filelog)
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 def ancestor(self, c2):
136 def ancestor(self, c2):
143 """
137 """
144 return the ancestor context of self and c2
138 return the ancestor context of self and c2
General Comments 0
You need to be logged in to leave comments. Login now