Skip to content

Commit

Permalink
removing unecessary cast
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Sep 18, 2023
1 parent d81dc84 commit 8ce90fd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public CompletableFuture<WorkflowData> execute(List<WorkflowData> data) {
logger.debug("Previous step sent params: {}, content: {}", parameters, content);

if (parameters.containsKey("id")) {
pipelineId = (String) parameters.get("id");
pipelineId = parameters.get("id");
}
if (content.containsKey("source")) {
source = (String) content.get("source");
Expand Down

0 comments on commit 8ce90fd

Please sign in to comment.