From 77017cd677c209324a9253f005246eba606d80d4 Mon Sep 17 00:00:00 2001 From: Lukasz Lenart Date: Wed, 17 Aug 2016 15:34:37 +0200 Subject: [PATCH] Allows modify params on coping --- .../opensymphony/xwork2/config/entities/ResultTypeConfig.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xwork-core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java b/xwork-core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java index 85ef0232f..4a45db446 100644 --- a/xwork-core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java +++ b/xwork-core/src/main/java/com/opensymphony/xwork2/config/entities/ResultTypeConfig.java @@ -50,7 +50,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; }