The Trunk: Kernel-nice.729.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-nice.729.mcz

commits-2
Nicolas Cellier uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-nice.729.mcz

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

Name: Kernel-nice.729
Author: nice
Time: 2 January 2013, 11:52:19.073 pm
UUID: 4e9cfbca-a21e-472b-9a0e-d598a982af3b
Ancestors: Kernel-nice.728

Use at:ifAbsentPut: instead of at:ifAbsent: [ at:put: ]
This is an update of http://bugs.squeak.org/view.php?id=5667

=============== Diff against Kernel-nice.728 ===============

Item was changed:
  ----- Method: Monitor>>queueFor: (in category 'private') -----
  queueFor: aSymbol
  aSymbol ifNil: [^ self defaultQueue].
  ^ self queueDict
  at: aSymbol
+ ifAbsentPut: [OrderedCollection new].!
- ifAbsent: [self queueDict at: aSymbol put: OrderedCollection new].!