|
Hi,
I have to re-writte 1 method on NullConverter class
isLeftNullValue: anObject
"Private - Answers whether the argument can be considered the 'null' value
for the left hand side value type."
^self leftNullValue = anObject
Because if it's: ^anObject = self leftNullValue " like in super class "
This cause an Error because anObject has a special #=, and #self
leftNullValue answer nil.
So,
= anObject
^self id = anObject id, "but anObject isNil "
Is this a bug or Am I doing something wrong ?
Best Regards
Bruno Buzzi Brasesco
|