The Trunk: Monticello-nice.325.mcz

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

The Trunk: Monticello-nice.325.mcz

commits-2
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]!