[squeak-dev] The Trunk: Monticello-bf.389.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Apr 18 21:30:26 UTC 2010


Bert Freudenberg uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-bf.389.mcz

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

Name: Monticello-bf.389
Author: bf
Time: 18 April 2010, 11:30:08.315 pm
UUID: 96c32a51-41b9-4a06-b954-eef545083112
Ancestors: Monticello-bf.388

- converting a version info to a dictionary should use a string id

=============== Diff against Monticello-bf.388 ===============

Item was changed:
  ----- Method: MCVersionInfo>>asDictionary (in category 'converting') -----
  asDictionary
  	^ Dictionary new
  		at: #name put: name;
+ 		at: #id put: id asString;
- 		at: #id put: id;
  		at: #message put: message;
  		at: #date put: date;
  		at: #time put: time;
  		at: #author put: author;
  		at: #ancestors put: (self ancestors collect: [:a | a asDictionary]);
  		yourself!




More information about the Squeak-dev mailing list