A new version of Kernel was added to project The Inbox:
http://source.squeak.org/inbox/Kernel-djr.432.mcz==================== Summary ====================
Name: Kernel-djr.432
Author: djr
Time: 23 March 2010, 5:43:36.668 pm
UUID: 2e0904c5-b15c-4c07-9915-1cf2b51e0410
Ancestors: Kernel-nice.431
Fix rootsOfTheWorld, broken since the SmalltalkImage refactoring.
=============== Diff against Kernel-nice.431 ===============
Item was changed:
----- Method: Class class>>rootsOfTheWorld (in category 'inquiries') -----
rootsOfTheWorld
"return a collection of classes which have a nil superclass"
+ ^(Smalltalk globals select: [:each | each isBehavior and: [each superclass isNil]]) asOrderedCollection!
- ^(Smalltalk select: [:each | each isBehavior and: [each superclass isNil]]) asOrderedCollection!