diff mercurial/manifest.py @ 3140:1eb50c9d2649

manifest.py: remove unnecessary method
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
date Wed, 20 Sep 2006 22:26:47 +0200
parents 345bac2bc4ec
children adb246ce6736
line wrap: on
line diff
--- a/mercurial/manifest.py	Wed Sep 20 21:44:35 2006 +0200
+++ b/mercurial/manifest.py	Wed Sep 20 22:26:47 2006 +0200
@@ -56,9 +56,6 @@
         self.mapcache = (node, mapping)
         return mapping
 
-    def diff(self, a, b):
-        return mdiff.textdiff(str(a), str(b))
-
     def _search(self, m, s, lo=0, hi=None):
         '''return a tuple (start, end) that says where to find s within m.