You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a leftover of our general Java 8+ codebase revision and a follow-up to several recent polishing commits, one grand sweep is missing still: the use of Map.forEach instead of manual Map.Entry iteration in all places where no return clauses or checked exceptions are involved. That said, we do not switch to use of the Stream API for simple scenarios yet, just to streamlined map entry iteration for the time being.
Inspired by #1752, broadly applied to existing Map.Entry iteration cases as well.