Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

Commit

Permalink
Fix NullPointerException for string compare (#2860)
Browse files Browse the repository at this point in the history
  • Loading branch information
jxu-nflx authored Mar 21, 2022
1 parent 286e27d commit 8be051f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ && getPriority() == that.getPriority()
&& getWorkflowType().equals(that.getWorkflowType())
&& getWorkflowId().equals(that.getWorkflowId())
&& Objects.equals(getCorrelationId(), that.getCorrelationId())
&& getStartTime().equals(that.getStartTime())
&& getUpdateTime().equals(that.getUpdateTime())
&& getEndTime().equals(that.getEndTime())
&& StringUtils.equals(getStartTime(), that.getStartTime())
&& StringUtils.equals(getUpdateTime(), that.getUpdateTime())
&& StringUtils.equals(getEndTime(), that.getEndTime())
&& getStatus() == that.getStatus()
&& Objects.equals(getReasonForIncompletion(), that.getReasonForIncompletion())
&& Objects.equals(getEvent(), that.getEvent());
Expand Down

0 comments on commit 8be051f

Please sign in to comment.