[squeak-dev] The Trunk: Monticello-cmm.434.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Mar 15 19:19:13 UTC 2011


Chris Muller uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-cmm.434.mcz

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

Name: Monticello-cmm.434
Author: cmm
Time: 7 March 2011, 9:38:59.22 pm
UUID: de0daf27-114a-4ce8-b19f-8a3b4050fd0f
Ancestors: Monticello-cmm.433

When a FileBasedRepository calculates #allPackageNames, only take package names from #isValid .mcz files.

=============== Diff against Monticello-cmm.433 ===============

Item was changed:
  ----- Method: MCFileBasedRepository>>allPackageNames (in category 'overriding') -----
  allPackageNames
  	| answer |
  	answer := Set new.
  	self allFileNamesOrCache do:
+ 		[ : each | | versionName |
+ 		versionName := each asMCVersionName.
+ 		versionName isValid ifTrue: [ answer add: versionName packageName ] ].
- 		[ : each | answer add: each asMCVersionName packageName ].
  	^ answer!




More information about the Squeak-dev mailing list