Skip to content

Commit cfd753c

Browse files
fjtiradoCopilot
andauthored
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent c60d505 commit cfd753c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

impl/core/src/main/java/io/serverlessworkflow/impl/TaskContext.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,7 @@ public String toString() {
216216
+ completedAt
217217
+ ", retryAttempt="
218218
+ retryAttempt);
219-
tryRetryCount.ifPresent(s -> sb.append(", tryRetryCount=" + s));
220-
sb.append("]");
219+
tryRetryCount.ifPresent(s -> sb.append(", tryRetryCount=").append(s));
221220
return sb.toString();
222221
}
223222
}

0 commit comments

Comments
 (0)