The Trunk: Monticello-nice.329.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-nice.329.mcz

commits-2
Nicolas Cellier uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-nice.329.mcz

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

Name: Monticello-nice.329
Author: nice
Time: 22 October 2009, 3:26:36 am
UUID: 7be44818-3918-0b4e-8bf3-51979dd740ba
Ancestors: Monticello-nice.328

revert my previous change

Rationale: #asSortedCollection is harmless and enable compatibility with other Squeak branches

=============== Diff against Monticello-nice.328 ===============

Item was changed:
  ----- Method: PseudoClass>>asClassDefinition (in category '*monticello') -----
  asClassDefinition
  ^ MCClassDefinition
  name: self name
  superclassName: self superclass name
  category: self category
  instVarNames: self instVarNames
+ classVarNames: self classVarNames asSortedCollection
- classVarNames: self classVarNames
  poolDictionaryNames: self poolDictionaryNames
  classInstVarNames: self class instVarNames
  type: self typeOfClass
  comment: self organization classComment asString
  commentStamp: self organization commentStamp !