Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-nice.327.mcz==================== Summary ====================
Name: Monticello-nice.327
Author: nice
Time: 21 October 2009, 12:30:34 pm
UUID: 07c504ac-8695-429b-86b2-39481069686f
Ancestors: Monticello-nice.326
Use #keys rather than #fasterKeys
Note that pattern (x keys asArray sort) could as well be written (x keys sort) now that keys returns an Array...
This #asArray is here solely for cross-dialect/fork compatibility.
=============== Diff against Monticello-nice.326 ===============
Item was changed:
----- Method: MCPackageLoader>>provisions (in category 'private') -----
provisions
+ ^ provisions ifNil: [provisions := Set withAll: Smalltalk keys]!
- ^ provisions ifNil: [provisions := Set withAll: Smalltalk fasterKeys]!
Item was changed:
----- Method: MCFileBasedRepository>>resizeCache: (in category 'as yet unclassified') -----
resizeCache: aDictionary
[aDictionary size <= self maxCacheSize] whileFalse:
+ [aDictionary removeKey: aDictionary keys atRandom]!
- [aDictionary removeKey: aDictionary fasterKeys atRandom]!