SystemChangeNotifier >> traitDefinitionChangedFrom:to: not sent

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

SystemChangeNotifier >> traitDefinitionChangedFrom:to: not sent

Balázs Kósi
Hi,

I'm fiddling with SystemChangeAnnouncer [1] and noticed that
#traitDefinitionChangedFrom:to:
is not sent anymore. In a 3.9 image it has 2 senders: ClassTrait >>
uses: and Trait class >> named:uses:category:env:

What should we do? Drop this kind of change? Put back the notifications?

Balázs

[1] You can load it with:

Installer ss
        project: 'AXAnnouncements';
        install: 'Announcements';
        project: 'SysChangeAnnouncer';
        install: 'SystemChangeAnnouncer';
        install: 'SystemChangeAnnouncerCompatibility'

There are some test checking compatibility of the old and new implementation in:
SystemChangeAnnouncerTest

Reply | Threaded
Open this post in threaded view
|

Re: SystemChangeNotifier >> traitDefinitionChangedFrom:to: not sent

Andreas.Raab
On 3/11/2010 2:31 AM, Balázs Kósi wrote:
> I'm fiddling with SystemChangeAnnouncer [1] and noticed that
> #traitDefinitionChangedFrom:to:
> is not sent anymore. In a 3.9 image it has 2 senders: ClassTrait>>
> uses: and Trait class>>  named:uses:category:env:
>
> What should we do? Drop this kind of change? Put back the notifications?

Probably put it back. This is most likely just an oversight. I'll check it.

Cheers,
   - Andreas

> [1] You can load it with:
>
> Installer ss
> project: 'AXAnnouncements';
> install: 'Announcements';
> project: 'SysChangeAnnouncer';
> install: 'SystemChangeAnnouncer';
> install: 'SystemChangeAnnouncerCompatibility'
>
> There are some test checking compatibility of the old and new implementation in:
> SystemChangeAnnouncerTest