The Trunk: Universes-nice.45.mcz

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

The Trunk: Universes-nice.45.mcz

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

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

Name: Universes-nice.45
Author: nice
Time: 22 August 2010, 8:51:10.19 pm
UUID: 7ae8dc8e-7ab0-4194-ad45-a902e7d62e5e
Ancestors: Universes-nice.44

minor change: avoid creating a SortedCollection when not necessary...
asSortedCollection asArray -> asArray sort

=============== Diff against Universes-nice.44 ===============

Item was changed:
  ----- Method: UUniverseBrowser>>categories (in category 'package list') -----
  categories
+ ^(self sortedPackages collect: [ :p | p category])
+ asSet asArray sort: [ :p1 :p2 | p1 asString < p2 asString]!
- ^((self sortedPackages collect: [ :p | p category])
- asSet
- asSortedCollection: [ :p1 :p2 | p1 asString < p2 asString])
- asArray!