The Trunk: Help-Squeak-Project-mt.42.mcz

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

The Trunk: Help-Squeak-Project-mt.42.mcz

commits-2
Marcel Taeumel uploaded a new version of Help-Squeak-Project to project The Trunk:
http://source.squeak.org/trunk/Help-Squeak-Project-mt.42.mcz

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

Name: Help-Squeak-Project-mt.42
Author: mt
Time: 12 August 2016, 10:16:46.939343 am
UUID: d5ec4812-897a-a44f-afda-c9205f385092
Ancestors: Help-Squeak-Project-mt.41

Use #sorted: because #sortBy: will be deprecated in the future.

=============== Diff against Help-Squeak-Project-mt.41 ===============

Item was changed:
  ----- Method: SqueakReleaseNotes class>>pages (in category 'accessing') -----
  pages
 
  | dir |
  dir := FileDirectory default directoryNamed: self folderName.
  ^ dir exists
  ifFalse: [#()]
+ ifTrue: [(dir entries collect: [:entry | entry name]) sorted: [:a :b | a >= b]]!
- ifTrue: [(dir entries collect: [:entry | entry name]) sortBy: [:a :b | a >= b]]!