[squeak-dev] The Trunk: Kernel-nice.729.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 2 22:54:04 UTC 2013


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].!



More information about the Squeak-dev mailing list