The Trunk: Installer-Core-ul.417.mcz

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

The Trunk: Installer-Core-ul.417.mcz

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