Andreas Raab uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ul.303.mcz==================== Summary ====================
Name: Kernel-ul.303
Author: ul
Time: 21 November 2009, 12:32:53 pm
UUID: e49dad60-4c62-f54a-9242-21a1843b4ee6
Ancestors: Kernel-nice.300
- removed MethodDictionary >> #do: because it should be the same as Dictionary >> #do:
Load Collections-ul.200 before this package!
=============== Diff against Kernel-nice.300 ===============
Item was removed:
- ----- Method: MethodDictionary>>do: (in category 'enumeration') -----
- do: aBlock
-
- tally = 0 ifTrue: [ ^self ].
- 1 to: self basicSize do: [ :i |
- | value |
- (value := array at: i) ifNotNil: [
- aBlock value: value ] ]
- !