Skip to content

Avoid repeatedly searching in Blob.pathlist

Julien "_FrnchFrgg_" Rivaud requested to merge (removed):pathlistmap into master

To avoid duplicates, Blob.addalias() searched the entire list before appending, which is slow if the list is long. Use a map, with good search complexity but keep the slice because the using code relies on the ordering.

Merge request reports