[squeak-dev] The Trunk: Monticello-bf.487.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Nov 20 18:08:04 UTC 2011


Bert Freudenberg uploaded a new version of Monticello to project The Trunk:
http://source.squeak.org/trunk/Monticello-bf.487.mcz

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

Name: Monticello-bf.487
Author: bf
Time: 20 November 2011, 7:07:40.339 pm
UUID: a2eb96da-e4c5-4acb-9058-ef1afb5d5de5
Ancestors: Monticello-bf.486

Fix for MCSubDirectoryRepository by NISHIHARA Satoshi.

=============== Diff against Monticello-bf.486 ===============

Item was changed:
  ----- Method: MCSubDirectoryRepository>>allFileNames (in category 'enumeration') -----
  allFileNames
  	"sorting {entry. dirName. name}"
  
  	| sorted |
  	sorted := SortedCollection sortBlock: [:a :b |
  		a first modificationTime >= b first modificationTime ].
  	self allDirectories
  		do: [:dir | dir entries
  				do: [:ent | ent isDirectory
  						ifFalse: [sorted add: {ent. dir fullName. ent name}]]].
  	^ sorted
+ 		collect: [:ea | ea third asMCVersionName]!
- 		collect: [:ea | ea third ]!




More information about the Squeak-dev mailing list