Skip to content

Commit

Permalink
reverted change
Browse files Browse the repository at this point in the history
  • Loading branch information
formkiqMike committed Aug 20, 2022
1 parent 3a1f2b7 commit 0c0fe41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/src/main/java/com/formkiq/module/actions/Action.java
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public Action() {
* @return {@link Map}
*/
public Map<String, String> parameters() {
return this.parameters != null ? new HashMap<>(this.parameters) : null;
return this.parameters;
}

/**
Expand All @@ -63,7 +63,7 @@ public Map<String, String> parameters() {
* @return {@link Action}
*/
public Action parameters(final Map<String, String> map) {
this.parameters = new HashMap<>(map);
this.parameters = map;
return this;
}

Expand Down

0 comments on commit 0c0fe41

Please sign in to comment.