You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The null-coalescing operator ?? returns the value of its left-hand operand if it isn't null; otherwise, it evaluates the right-hand operand and returns its result. Passing in null explicitly is the same as not using the said operator at all. Instead, consider dropping the operator altogether and using the assignment …
Occurrences
There is 1 occurrence of this issue in the repository.
Description
The null-coalescing operator
??
returns the value of its left-hand operand if it isn'tnull
; otherwise, it evaluates the right-hand operand and returns its result. Passing innull
explicitly is the same as not using the said operator at all. Instead, consider dropping the operator altogether and using the assignment …Occurrences
There is 1 occurrence of this issue in the repository.
See all occurrences on DeepSource → app.deepsource.com/gh/dgmjr-io/Dgmjr.Identity/issue/CS-R1135/occurrences/
The text was updated successfully, but these errors were encountered: