##// END OF EJS Templates
mixedrepostorecache: fix a silly redundant updating of set...
Martin von Zweigbergk -
r42632:aae93201 default
parent child Browse files
Show More
@@ -128,8 +128,7 b' class mixedrepostorecache(_basefilecache'
128 # scmutil.filecache only uses the path for passing back into our
128 # scmutil.filecache only uses the path for passing back into our
129 # join(), so we can safely pass a list of paths and locations
129 # join(), so we can safely pass a list of paths and locations
130 super(mixedrepostorecache, self).__init__(*pathsandlocations)
130 super(mixedrepostorecache, self).__init__(*pathsandlocations)
131 for path, location in pathsandlocations:
131 _cachedfiles.update(pathsandlocations)
132 _cachedfiles.update(pathsandlocations)
133
132
134 def join(self, obj, fnameandlocation):
133 def join(self, obj, fnameandlocation):
135 fname, location = fnameandlocation
134 fname, location = fnameandlocation
General Comments 0
You need to be logged in to leave comments. Login now