changeset 10131 | ef5b537433da |
parent 10128 | ea7c392f2b08 |
child 10136 | 270367ec4d30 |
--- a/mercurial/patch.py Wed Dec 23 19:31:48 2009 +0100 +++ b/mercurial/patch.py Wed Dec 23 19:31:48 2009 +0100 @@ -715,14 +715,6 @@ def old(self, fuzz=0, toponly=False): return self.fuzzit(self.a, fuzz, toponly) - def newctrl(self): - res = [] - for x in self.hunk: - c = x[0] - if c == ' ' or c == '+': - res.append(x) - return res - def new(self, fuzz=0, toponly=False): return self.fuzzit(self.b, fuzz, toponly)