[squeak-dev] The Trunk: Installer-Core-ul.417.mcz

commits at source.squeak.org commits at source.squeak.org
Mon Mar 13 14:47:24 UTC 2017


Levente Uzonyi uploaded a new version of Installer-Core to project The Trunk:
http://source.squeak.org/trunk/Installer-Core-ul.417.mcz

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

Name: Installer-Core-ul.417
Author: ul
Time: 13 March 2017, 5:07:25.965518 am
UUID: 360562dd-6d8c-4ea3-9276-742f4b844493
Ancestors: Installer-Core-cmm.416

SortedCollection Whack-a-mole

=============== Diff against Installer-Core-cmm.416 ===============

Item was changed:
  ----- Method: InstallerMantis>>bugsAll (in category 'action report') -----
  bugsAll
  
  	^ array ifNil: [
  		
+ 		array := ( self bugsSqueak ,  (self dataGetFrom: '/installer_export.php') ) asSet sorted: [ :a :b | a date > b date ]
- 		array := ( self bugsSqueak ,  (self dataGetFrom: '/installer_export.php') ) asSet asSortedCollection: [ :a :b | a date > b date ]
  		
  	].
  
  "
  
  Installer mantis bugsAll
  
  "
  	
  !

Item was changed:
  ----- Method: InstallerMantis>>files (in category 'public interface') -----
  files
   	"provide a list of files associated with the bug in id order"
  	"
  	Installer mantis bugFiles: 6660.
  	"
+ 	^self maFiles associations 
+ 		sort: [ :a :b | a value asInteger < b value asInteger ];
+ 		replace: [ :a | a key ]!
- 	^ (self maFiles associations asSortedCollection: [ :a :b | a value asInteger < b value asInteger ]) 
- 				collect: [ :a | a key ]!



More information about the Squeak-dev mailing list