mirror of
https://github.com/spring-projects/spring-framework.git
synced 2026-09-17 16:39:29 +00:00
Prior to this commit, DefaultServerRequest's ServletParametersMap lost the original parameter order when entrySet() was invoked. To address that, this commit revises ServletParametersMap.entrySet() so that it stores the results in a LinkedHashSet, thereby retaining the original order. Closes gh-36966