##// END OF EJS Templates
dirstate: prevent useless util.fspath() invocation for '.'...
FUJIWARA Katsunori -
r15668:8e020155 stable
parent child Browse files
Show More
@@ -69,6 +69,7 b' class dirstate(object):'
69 69 f = {}
70 70 for name in self._map:
71 71 f[util.normcase(name)] = name
72 f['.'] = '.' # prevents useless util.fspath() invocation
72 73 return f
73 74
74 75 @propertycache
General Comments 0
You need to be logged in to leave comments. Login now