Use a Hashset to not append duplicates
When building the reverse deps HashMap we insert duplicates into the mapping as we use a Vector to store it in. A HashSet prevents duplicates from being added. Closes: #2
Please register or sign in to comment
When building the reverse deps HashMap we insert duplicates into the mapping as we use a Vector to store it in. A HashSet prevents duplicates from being added. Closes: #2