Skip to content

Commit

Permalink
CR fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
faderskd committed Oct 30, 2024
1 parent 8105b77 commit 9c61b43
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ public String toString() {
return "OfflineRetransmissionTask{" + "taskId='" + taskId + '\'' + ", request=" + request + '}';
}

private static String parseTimestamp(@Nullable Instant startTimestamp) {
if (startTimestamp == null) {
private static String parseTimestamp(@Nullable Instant timestamp) {
if (timestamp == null) {
return null;
}
return startTimestamp.toString();
return timestamp.toString();
}
}

0 comments on commit 9c61b43

Please sign in to comment.