Repository: struts
Updated Branches:
  refs/heads/master fb527e4f4 -> c1869f498


Allows modify params on coping


Project: http://git-wip-us.apache.org/repos/asf/struts/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/ea2564d7
Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/ea2564d7
Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/ea2564d7

Branch: refs/heads/master
Commit: ea2564d769bcea68ae45588da36dac20fab4affe
Parents: fb527e4
Author: Lukasz Lenart <lukaszlen...@apache.org>
Authored: Wed Aug 17 15:40:24 2016 +0200
Committer: Lukasz Lenart <lukaszlen...@apache.org>
Committed: Wed Aug 17 15:40:24 2016 +0200

----------------------------------------------------------------------
 .../com/opensymphony/xwork2/config/entities/ResultTypeConfig.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/ea2564d7/core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java
----------------------------------------------------------------------
diff --git 
a/core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java
 
b/core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java
index bbed0e2..ff52590 100644
--- 
a/core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java
+++ 
b/core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java
@@ -52,7 +52,7 @@ public class ResultTypeConfig extends Located implements 
Serializable {
         this.name = orig.name;
         this.className = orig.className;
         this.defaultResultParam = orig.defaultResultParam;
-        this.params = orig.params;
+        this.params = new LinkedHashMap<>(orig.params);
         this.location = orig.location;
     }
 

Reply via email to