-
Type:
Bug
-
Status: Closed
-
Priority:
Trivial
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: 8.7
-
Component/s: None
-
Labels:None
The SOLR code has a few linear log operations that could be linear. That is, operations of
```
for(key in hashmap) doThing(hashmap.get(key));
```
vs just `for(value in hashmap) doThing(value)`
I have a PR incoming on GitHub to fix a couple of these issue as found by Infer on Muse.
- links to