OldTruckDriver opened a new pull request, #683:
URL: https://github.com/apache/commons-collections/pull/683

   ## Summary
   
   Fix `IndexedCollection.remove(Object)` so non-unique indexes keep remaining 
values that share the same transformed key.
   
   ## Details
   
   Previously, removing one object removed the entire key bucket from the 
index. For non-unique indexes, this made other collection elements with the 
same transformed key disappear from indexed lookups even though they were still 
present in the decorated collection.
   
   This change removes only the matching key/value mapping from the index.
   
   ## Tests
   
   - `mvn -q 
-Dtest=org.apache.commons.collections4.collection.IndexedCollectionTest test`
   - `mvn -q`


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to