Skip to content

Commit

Permalink
Addressing PR comments Part 3
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Oct 31, 2023
1 parent b8b01f5 commit 8ba9d0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,6 @@ public WorkflowStep createStep(String type) {
* @return the step map
*/
public Map<String, WorkflowStep> getStepMap() {
return this.stepMap;
return Map.copyOf(this.stepMap);
}
}

0 comments on commit 8ba9d0b

Please sign in to comment.