The Trunk: Monticello-cmm.559.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-cmm.559.mcz

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

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

Name: Monticello-cmm.559
Author: cmm
Time: 15 August 2013, 11:59:03.275 am
UUID: 922730f3-4bff-475b-84ea-c6d03d116b0d
Ancestors: Monticello-cmm.558

Need to answer the info object from the RepositoryGroup when it wasn't found where it was supposed to be.

=============== Diff against Monticello-cmm.558 ===============

Item was changed:
  ----- Method: MCInfoProxy>>materializeInfo (in category 'private') -----
  materializeInfo
  ^ (repository versionWithInfo: info)
  ifNil:
  [ (MCRepositoryGroup default versionWithInfo: info)
  ifNil: [ nil error: 'Please copy ' , info name , 'with id ' , info id asString , ' to ' , repository asString , ' and try again.' ]
  ifNotNil:
+ [ : foundVersion | repository storeVersion: foundVersion.
+ foundVersion info ] ]
+ ifNotNil:
+ [ : version | version info ]!
- [ : foundVersion | repository storeVersion: foundVersion ] ]
- ifNotNil: [ : version | version info ]!