The Inbox: Monticello-bp.406.mcz

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

The Inbox: Monticello-bp.406.mcz

commits-2
A new version of Monticello was added to project The Inbox:
http://source.squeak.org/inbox/Monticello-bp.406.mcz

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

Name: Monticello-bp.406
Author: bp
Time: 31 October 2010, 4:38:59.454 pm
UUID: 2bc8f189-09ca-4471-b0fe-89c70f4f379d
Ancestors: Monticello-nice.405

added obsoletePackageInfos

=============== Diff against Monticello-nice.405 ===============

Item was added:
+ ----- Method: MCPackageManager class>>obsoletePackageInfos (in category 'cleanup') -----
+ obsoletePackageInfos
+ "Answer all PackageInfos that are not associated with an MCPackageManager."
+ | pkgNames |
+ pkgNames := self allManagers collect: [:wcs | wcs packageName] as: Set.
+ ^PackageOrganizer default packages select: [:p |
+ p class isObsolete or: [(pkgNames includes: p packageName) not]]!