Skip to content

Commit

Permalink
fix NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
shenqinb-star committed Aug 7, 2024
1 parent 7807365 commit 406a39e
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -688,6 +688,7 @@ private List<String> buildRemovalList(String taskId, TaskExecutionEntity taskExe
if (inputValue == null || inputValue.isBlank()) {
inputValue = taskConfig.getDefaultValue();
}
inputValue = inputValue == null ? "" : inputValue;
String value = propertyManager.replaceValueWithProperty(inputValue, activityId,
applicationProperties);
value = propertyManager.replaceValueWithProperty(value, activityId,
Expand Down

0 comments on commit 406a39e

Please sign in to comment.