Hello [~maldivia]
I am not sure I can see the problem here. Have you encountered an actual error with this?
- Looking at the code of {{ConcurrentValidator.validateBeanNames}} what is actually parallel is just going over the key set itself via iterator. - - Implementation of [{{AbstractMultimap.keySet()}} returns an {{ImmutableSet.copyOf(map.keySet());}}|https://github.com/weld/core/blob/master/impl/src/main/java/org/jboss/weld/util/collections/AbstractMultimap.java#L106], so there is no resizing happening. - I was blind, I can see that {{Validator.validateBeanName()}} still operates on the set. |
|