[squeak-dev] The Trunk: System-ul.268.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Feb 26 14:20:42 UTC 2010


Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.268.mcz

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

Name: System-ul.268
Author: ul
Time: 26 February 2010, 2:26:37.458 pm
UUID: 8c48d2ba-d776-ad42-a65e-471445a3d83e
Ancestors: System-ar.267

- added ObjectFinalizerCollection which will hold the finalizers in WeakRegistry.

=============== Diff against System-ar.267 ===============

Item was added:
+ ----- Method: ObjectFinalizerCollection>>finalize (in category 'finalization') -----
+ finalize
+ 	"Finalize all elements in this collection. The elements are expected to be ObjectFinalizers, but can be any object which understands #finalize."
+ 
+ 	self do: #finalize!

Item was added:
+ OrderedCollection subclass: #ObjectFinalizerCollection
+ 	instanceVariableNames: ''
+ 	classVariableNames: ''
+ 	poolDictionaries: ''
+ 	category: 'System-Finalization'!
+ 
+ !ObjectFinalizerCollection commentStamp: 'ul 2/26/2010 14:23' prior: 0!
+ An ObjectFinalizerCollection is simple collection which is intended to hold ObjectFinalizers and be used by WeakRegistry.!




More information about the Squeak-dev mailing list