[PIER] MAOneToManyComponent>>add without duplicates
Damien Cassou
8 Dec
2005
8 Dec
'05
6:27 a.m.
Hi all,
I modified the MAOneToManyComponent>>add method not to accept the
duplicated :
MAOneToManyComponent>>add
[...]
(result notNil and: [(self value includes: result) not])
ifTrue: [ self value: (self value copyWith: result); refresh ].
Bye