##// END OF EJS Templates
largefiles: drop unnecessary setting of matcher._always...
Martin von Zweigbergk -
r23144:55325a32 default
parent child Browse files
Show More
@@ -576,7 +576,6 b' def overridecopy(orig, ui, repo, pats, o'
576 lfile = lambda f: lfutil.standin(f) in manifest
576 lfile = lambda f: lfutil.standin(f) in manifest
577 m._files = [lfutil.standin(f) for f in m._files if lfile(f)]
577 m._files = [lfutil.standin(f) for f in m._files if lfile(f)]
578 m._fmap = set(m._files)
578 m._fmap = set(m._files)
579 m._always = False
580 origmatchfn = m.matchfn
579 origmatchfn = m.matchfn
581 m.matchfn = lambda f: (lfutil.isstandin(f) and
580 m.matchfn = lambda f: (lfutil.isstandin(f) and
582 (f in manifest) and
581 (f in manifest) and
@@ -684,7 +683,6 b' def overriderevert(orig, ui, repo, *pats'
684 m._files = [tostandin(f) for f in m._files]
683 m._files = [tostandin(f) for f in m._files]
685 m._files = [f for f in m._files if f is not None]
684 m._files = [f for f in m._files if f is not None]
686 m._fmap = set(m._files)
685 m._fmap = set(m._files)
687 m._always = False
688 origmatchfn = m.matchfn
686 origmatchfn = m.matchfn
689 def matchfn(f):
687 def matchfn(f):
690 if lfutil.isstandin(f):
688 if lfutil.isstandin(f):
General Comments 0
You need to be logged in to leave comments. Login now