Closed nilsschmidt1337 closed 3 years ago
When myFunctionB() and myFunctionB() both returning an Integer, the result should be compared with equals. I am aware of autoboxing and that it is better to prefer primitives over objects, but sometimes you can't control the return type.
myFunctionB()
Integer
Closed with commit 791c2a8.
When
myFunctionB()
andmyFunctionB()
both returning anInteger
, the result should be compared with equals. I am aware of autoboxing and that it is better to prefer primitives over objects, but sometimes you can't control the return type.