##// END OF EJS Templates
context: reimplement memfilectx.cmp()...
Yuya Nishihara -
r41022:328557af stable
parent child Browse files
Show More
@@ -2292,6 +2292,9 b' class memfilectx(committablefilectx):'
2292 if copied:
2292 if copied:
2293 self._copied = (copied, nullid)
2293 self._copied = (copied, nullid)
2294
2294
2295 def cmp(self, fctx):
2296 return self.data() != fctx.data()
2297
2295 def data(self):
2298 def data(self):
2296 return self._data
2299 return self._data
2297
2300
General Comments 0
You need to be logged in to leave comments. Login now