Optional.ofNullable Vs Ternary Operator Vs If/Else
I was completing a code review for a recent merge/pull request and one of the questions that arose from this was the use of Optional.ofNullable() for checking if something was null and assigning a value if not. There was quite a bit of back and forth because really, the Optional route looks really nice and …
Optional.ofNullable Vs Ternary Operator Vs If/Else Read More »