Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Avoid potential slow Set#removeAll call in HierarchicalCommunica…
…tionController#passivateInactiveKeys The performance of calling Set#removeAll(List) is dependent on the relative sizes of the Set and List parameter. Replace Set#removeAll with List#forEach(Set::remove) to avoid this. Fixes vaadin#13745
- Loading branch information