Nicolas Cellier uploaded a new version of Traits to project The Trunk:
http://source.squeak.org/trunk/Traits-nice.236.mcz==================== Summary ====================
Name: Traits-nice.236
Author: nice
Time: 20 October 2009, 12:03:56 pm
UUID: 3a815a4c-c205-7d44-ac1b-4083e4aa7206
Ancestors: Traits-nice.235
use fasterKeys
=============== Diff against Traits-nice.235 ===============
Item was changed:
----- Method: TraitDescription>>organization (in category 'organization') -----
organization
"Answer the instance of ClassOrganizer that represents the organization
of the messages of the receiver."
organization ifNil:
+ [self organization: (ClassOrganizer defaultList: self methodDict fasterKeys sort)].
- [self organization: (ClassOrganizer defaultList: self methodDict keys asSortedCollection asArray)].
(organization isMemberOf: Array) ifTrue:
[self recoverFromMDFaultWithTrace].
"Making sure that subject is set correctly. It should not be necessary."
organization ifNotNil: [organization setSubject: self].
^ organization!