Skip to content

Commit

Permalink
Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Dec 22, 2023
1 parent 4233968 commit 07c551b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ protected StartLaunchRQ buildStartLaunchRq(ListenerParameters parameters) {
rq.setStartTime(Calendar.getInstance().getTime());
rq.setMode(parameters.getLaunchRunningMode());
rq.setAttributes(new HashSet<>(parameters.getAttributes()));
if (!isNotBlank(parameters.getDescription())) {
if (isNotBlank(parameters.getDescription())) {
rq.setDescription(parameters.getDescription());
}
rq.setRerun(parameters.isRerun());
Expand Down

0 comments on commit 07c551b

Please sign in to comment.