The Trunk: Collections-ar.322.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Collections-ar.322.mcz

commits-2
Andreas Raab uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-ar.322.mcz

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

Name: Collections-ar.322
Author: ar
Time: 26 February 2010, 11:30:57.149 pm
UUID: 1e60423b-8657-6144-93cc-dd665c70155f
Ancestors: Collections-ul.321

Cleanup for HashedCollection and Symbol.

=============== Diff against Collections-ul.321 ===============

Item was added:
+ ----- Method: Symbol class>>cleanUp (in category 'class initialization') -----
+ cleanUp
+ "Flush caches"
+
+ self compactSymbolTable.!

Item was added:
+ ----- Method: HashedCollection class>>cleanUp: (in category 'initialization') -----
+ cleanUp: aggressive
+ "Rehash all instances when cleaning aggressively"
+
+ aggressive ifTrue:[self rehashAll].
+ !