This is an automated email from the ASF dual-hosted git repository. lukaszlenart pushed a change to branch feature/prepares-for-7 in repository https://gitbox.apache.org/repos/asf/struts.git
omit 57ff4980a WW-5335 Prepares for Java 17 & Struts 7.x add f326ce327 WW-5333 Refactors AttributeMap add 4a206d83f Merge pull request #779 from apache/feature/WW-5333-attribute-map new dc13abaf8 WW-5335 Prepares for Java 17 & Struts 7.x This update added new revisions after undoing existing revisions. That is to say, some revisions that were in the old version of the branch are not in the new version. This situation occurs when a user --force pushes a change and generates a repository containing something like this: * -- * -- B -- O -- O -- O (57ff4980a) \ N -- N -- N refs/heads/feature/prepares-for-7 (dc13abaf8) You should already have received notification emails for all of the O revisions, and so the following emails describe only the N revisions from the common base, B. Any revisions marked "omit" are not gone; other references still refer to them. Any revisions marked "discard" are gone forever. The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "add" were already present in the repository and have only been added to this reference. Summary of changes: .../java/org/apache/struts2/components/Set.java | 16 +- .../struts2/{util => dispatcher}/AttributeMap.java | 72 ++-- .../org/apache/struts2/dispatcher/Dispatcher.java | 11 +- ...tcherListener.java => DispatcherConstants.java} | 27 +- .../org/apache/struts2/dispatcher/RequestMap.java | 4 +- .../debugging/DebuggingInterceptor.java | 16 +- .../org/apache/struts2/views/jsp/TagUtils.java | 2 +- .../org/apache/struts2/views/util/ContextUtil.java | 7 +- .../struts2/dispatcher/AttributeMapTest.java | 363 +++++++++++++++++++++ .../portlet/dispatcher/Jsr168Dispatcher.java | 13 +- 10 files changed, 452 insertions(+), 79 deletions(-) rename core/src/main/java/org/apache/struts2/{util => dispatcher}/AttributeMap.java (63%) copy core/src/main/java/org/apache/struts2/dispatcher/{DispatcherListener.java => DispatcherConstants.java} (64%) create mode 100644 core/src/test/java/org/apache/struts2/dispatcher/AttributeMapTest.java