changeset 6846:54b7c79575fa

context: get rid of unused changectx.filectxs() method
author Dirkjan Ochtman <dirkjan@ochtman.nl>
date Mon, 21 Jul 2008 13:26:42 +0200
parents 835a01a0cdb3
children 1a9577da9d02
files mercurial/context.py
diffstat 1 files changed, 0 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- 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