Allows modify params on coping

This commit is contained in:
Lukasz Lenart
2016-08-17 15:34:37 +02:00
parent 7d8c3598ef
commit 77017cd677
@@ -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<String, String>(orig.params);
this.location = orig.location;
}