The Trunk: System-eem.1056.mcz

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

The Trunk: System-eem.1056.mcz

commits-2
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.1056.mcz

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

Name: System-eem.1056
Author: eem
Time: 12 March 2019, 4:26:37.641499 pm
UUID: 5c24744b-c81e-460a-aca1-ce0099b23831
Ancestors: System-tpr.1055

Fix SystemNavigation>>allMethodsInCategory:

=============== Diff against System-tpr.1055 ===============

Item was changed:
  ----- Method: SystemNavigation>>allMethodsInCategory: (in category 'browse') -----
  allMethodsInCategory: category
  | aCollection |
  aCollection := OrderedCollection new.
  Cursor wait showWhile:
  [self allBehaviorsDo:
+ [:x | (x methodsInCategory: category) do:
- [:x | (x allMethodsInCategory: category) do:
  [:sel | aCollection add: x name , ' ' , sel]]].
+ ^aCollection sort!
- ^aCollection sort.
- !