manifest.py: remove unnecessary method

This commit is contained in:
Benoit Boissinot 2006-09-20 22:26:47 +02:00
parent c6538e557f
commit 663bcd49d0

View File

@ -56,9 +56,6 @@ class manifest(revlog):
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.