rootvector2 commented on PR #713:
URL: 
https://github.com/apache/commons-collections/pull/713#issuecomment-4979461784

   Thanks for merging. I audited the same pattern (a decorator mutating a 
parallel structure before the delegate validates the index) and these two were 
the only ones exposed: `SetUniqueList.set(int, E)` already goes through 
`super.set` first so the index is checked before the uniqueness set is touched, 
and `ListOrderedMap.put(int, K, V)` range-checks up front. The plain `List` 
decorators (`TransformedList`, `PredicatedList`, `GrowthList`, `FixedSizeList`) 
just delegate straight to the backing list, so it validates for them. Will keep 
an eye out if I spot more.


-- 
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