[squeak-dev] The Trunk: Help-Squeak-Project-mt.42.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Aug 12 08:16:55 UTC 2016


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]]!



More information about the Squeak-dev mailing list