Github user aleksandr-m commented on a diff in the pull request:

    https://github.com/apache/struts/pull/75#discussion_r50173826
  
    --- Diff: 
core/src/main/java/com/opensymphony/xwork2/config/providers/XmlConfigurationProvider.java
 ---
    @@ -777,11 +777,21 @@ protected Class verifyResultType(String className, 
Location loc) {
                     }
                     params.putAll(resultParams);
     
    -                ResultConfig resultConfig = new 
ResultConfig.Builder(resultName, resultClass)
    -                        .addParams(params)
    -                        .location(DomHelper.getLocationObject(element))
    -                        .build();
    -                results.put(resultConfig.getName(), resultConfig);
    +                Set<String> resultNamesSet;
    +                if (",".equals(resultName.trim())) {
    +                    resultNamesSet = new HashSet<>(1);
    +                    resultNamesSet.add(resultName);
    --- End diff --
    
    It looks a bit odd, agree. :) But it is supported right now and it is 
better than mapping `,` to `success` or not creating result at all.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to