This PR changes the boolean values assigned to isAmountSet to be consistent with standard ObjC boolean types. Here the use of false has been changed to NO & the use of @YES, which was flagging a compiler warning since Xcode 10 at least, has been changed to YES.
This PR changes the boolean values assigned to
isAmountSet
to be consistent with standard ObjC boolean types. Here the use offalse
has been changed toNO
& the use of@YES
, which was flagging a compiler warning since Xcode 10 at least, has been changed toYES
.