The Trunk: PackageInfo-Base-mt.69.mcz

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

The Trunk: PackageInfo-Base-mt.69.mcz

commits-2
Marcel Taeumel uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-mt.69.mcz

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

Name: PackageInfo-Base-mt.69
Author: mt
Time: 12 August 2016, 10:26:57.349343 am
UUID: 82ef9782-996b-714f-b729-849832d38742
Ancestors: PackageInfo-Base-nice.68

Use #sorted: instead of #sortBy: to better indicate that it is a copy and not an in-place update like #sort:.

=============== Diff against PackageInfo-Base-nice.68 ===============

Item was changed:
  ----- Method: PackageInfo>>classes (in category 'listing') -----
  classes
  ^(self systemCategories gather:
  [:cat |
  (SystemOrganization listAtCategoryNamed: cat)
  collect: [:className | Smalltalk at: className]])
+ sorted: [:a :b | a className <= b className]!
- sortBy: [:a :b | a className <= b className]!