Remove unnecessary sort

This commit is contained in:
Leeingnyo 2021-09-12 14:36:17 +09:00
parent 8c90b46114
commit 7734dae138

View File

@ -70,7 +70,7 @@ class Dir
end end
end end
end end
hash = Digest::SHA1.hexdigest(signatures.sort.join) hash = Digest::SHA1.hexdigest(signatures.join)
cache[dirname] = hash cache[dirname] = hash
hash hash
end end