##// END OF EJS Templates
dirstate._walkexplicit: drop normpath calls...
Siddharth Agarwal -
r24522:18085e46 default
parent child Browse files
Show More
@@ -599,7 +599,6 b' class dirstate(object):'
599 matchedir = match.explicitdir
599 matchedir = match.explicitdir
600 badfn = match.bad
600 badfn = match.bad
601 dmap = self._map
601 dmap = self._map
602 normpath = util.normpath
603 lstat = os.lstat
602 lstat = os.lstat
604 getkind = stat.S_IFMT
603 getkind = stat.S_IFMT
605 dirkind = stat.S_IFDIR
604 dirkind = stat.S_IFDIR
@@ -636,9 +635,9 b' class dirstate(object):'
636 alldirs = None
635 alldirs = None
637 for ff in files:
636 for ff in files:
638 if normalize:
637 if normalize:
639 nf = normalize(normpath(ff), False, True)
638 nf = normalize(ff, False, True)
640 else:
639 else:
641 nf = normpath(ff)
640 nf = ff
642 if nf in results:
641 if nf in results:
643 continue
642 continue
644
643
General Comments 0
You need to be logged in to leave comments. Login now