We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a1f2b7 commit 0c0fe41Copy full SHA for 0c0fe41
actions/src/main/java/com/formkiq/module/actions/Action.java
@@ -53,7 +53,7 @@ public Action() {
53
* @return {@link Map}
54
*/
55
public Map<String, String> parameters() {
56
- return this.parameters != null ? new HashMap<>(this.parameters) : null;
+ return this.parameters;
57
}
58
59
/**
@@ -63,7 +63,7 @@ public Map<String, String> parameters() {
63
* @return {@link Action}
64
65
public Action parameters(final Map<String, String> map) {
66
- this.parameters = new HashMap<>(map);
+ this.parameters = map;
67
return this;
68
69
0 commit comments