Skip to content

Commit 0c0fe41

Browse files
committed
reverted change
1 parent 3a1f2b7 commit 0c0fe41

File tree

1 file changed

+2
-2
lines changed
  • actions/src/main/java/com/formkiq/module/actions

1 file changed

+2
-2
lines changed

actions/src/main/java/com/formkiq/module/actions/Action.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public Action() {
5353
* @return {@link Map}
5454
*/
5555
public Map<String, String> parameters() {
56-
return this.parameters != null ? new HashMap<>(this.parameters) : null;
56+
return this.parameters;
5757
}
5858

5959
/**
@@ -63,7 +63,7 @@ public Map<String, String> parameters() {
6363
* @return {@link Action}
6464
*/
6565
public Action parameters(final Map<String, String> map) {
66-
this.parameters = new HashMap<>(map);
66+
this.parameters = map;
6767
return this;
6868
}
6969

0 commit comments

Comments
 (0)