[squeak-dev] The Trunk: Tools-tpr.980.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Jun 22 23:16:09 UTC 2020


tim Rowledge uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-tpr.980.mcz

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

Name: Tools-tpr.980
Author: tpr
Time: 22 June 2020, 4:16:05.370387 pm
UUID: 4c6aada6-083b-4437-8a81-ba7374a8decd
Ancestors: Tools-mt.979

Sort file directory names alphanum-no-case

=============== Diff against Tools-mt.979 ===============

Item was changed:
  ----- Method: FileList>>subDirectoriesOf: (in category 'directory tree') -----
  subDirectoriesOf: aDirectory
+ 	"provide a list of subdirectory names sorted alphnum-no-case"
+ 
+ 	^(aDirectory directoryNames sorted: [:a :b| (a compare: b) <= 2]) collect:[:each| aDirectory directoryNamed: each].!
- 	^aDirectory directoryNames collect:[:each| aDirectory directoryNamed: each].!



More information about the Squeak-dev mailing list