context: get rid of unused changectx.filectxs() method
authorDirkjan Ochtman <dirkjan@ochtman.nl>
Mon, 21 Jul 2008 13:26:42 +0200
changeset 6846 54b7c79575fa
parent 6845 835a01a0cdb3
child 6849 1a9577da9d02
context: get rid of unused changectx.filectxs() method
mercurial/context.py
--- a/mercurial/context.py	Mon Jul 21 13:22:11 2008 +0200
+++ b/mercurial/context.py	Mon Jul 21 13:26:42 2008 +0200
@@ -133,12 +133,6 @@
         return filectx(self._repo, path, fileid=fileid,
                        changectx=self, filelog=filelog)
 
-    def filectxs(self):
-        """generate a file context for each file in this changeset's
-           manifest"""
-        for f in util.sort(mf):
-            yield self.filectx(f, fileid=mf[f])
-
     def ancestor(self, c2):
         """
         return the ancestor context of self and c2