Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-nice.384.mcz==================== Summary ====================
Name: Monticello-nice.384
Author: nice
Time: 20 March 2010, 8:24:17.765 am
UUID: b2a5de3d-a606-8242-9e3f-e6f3e4782c95
Ancestors: Monticello-bf.383
Let add: answer the added object argument
=============== Diff against Monticello-bf.383 ===============
Item was changed:
----- Method: MCDefinitionIndex>>add: (in category 'as yet unclassified') -----
add: aDefinition
+ ^definitions at: aDefinition description put: aDefinition!
- definitions at: aDefinition description put: aDefinition!
Item was changed:
----- Method: MCDependencySorter>>add: (in category 'building') -----
add: anItem
| requirements |
requirements := self unresolvedRequirementsFor: anItem.
requirements isEmpty
ifTrue: [self addToOrder: anItem]
+ ifFalse: [self addRequirements: requirements for: anItem].
+ ^anItem!
- ifFalse: [self addRequirements: requirements for: anItem]!