Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid unnecessary calls to Collections.emptySet
IntelliJ IDEA rewrote these Map manipulations to use Map.getOrDefault in ways that always called Collections.emptySet even when no such empty set was required. I've manually replaced those with rewrites that avoid unnecessary calls to Collections.emptySet in exchange for assuming that the Maps never contain null values.
- Loading branch information