The Trunk: Kernel-ar.360.mcz

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

The Trunk: Kernel-ar.360.mcz

commits-2
Andreas Raab uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ar.360.mcz

==================== Summary ====================

Name: Kernel-ar.360
Author: ar
Time: 31 December 2009, 3:42:08 am
UUID: 64a98687-3714-f34f-abf5-0eef057762aa
Ancestors: Kernel-ar.359

Fix small typo in obsoletion - removeTraitUser: should be sent to the elements of the composition.

=============== Diff against Kernel-ar.359 ===============

Item was changed:
  ----- Method: ClassDescription>>obsolete (in category 'initialize-release') -----
  obsolete
  "Make the receiver obsolete."
  self hasTraitComposition ifTrue: [
+ self traitComposition do: [:each |
- self traitComposition traits do: [:each |
  each removeTraitUser: self]].
  superclass removeSubclass: self.
  self organization: nil.
  super obsolete.!