Fix a couple of inefficiencies in quickopen
1. We were refreshing the model twice! 2. Using set.insert() to check for duplicates is bad here as we keep growing in size..., use count() instead
Please register or sign in to comment
1. We were refreshing the model twice! 2. Using set.insert() to check for duplicates is bad here as we keep growing in size..., use count() instead