Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-nice.325.mcz==================== Summary ====================
Name: Monticello-nice.325
Author: nice
Time: 20 October 2009, 12:24:31 pm
UUID: 664c76f3-7545-e749-b6ef-4e867e51ac27
Ancestors: Monticello-nice.324
use #fasterKeys
=============== Diff against Monticello-nice.324 ===============
Item was changed:
----- Method: MCPackageLoader>>provisions (in category 'private') -----
provisions
+ ^ provisions ifNil: [provisions := Set withAll: Smalltalk fasterKeys]!
- ^ provisions ifNil: [provisions := Set withAll: Smalltalk keys]!
Item was changed:
----- Method: MCFileBasedRepository>>resizeCache: (in category 'as yet unclassified') -----
resizeCache: aDictionary
[aDictionary size <= self maxCacheSize] whileFalse:
+ [aDictionary removeKey: aDictionary fasterKeys atRandom]!
- [aDictionary removeKey: aDictionary keys atRandom]!