[squeak-dev] The Trunk: System-mt.1330.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Mar 23 09:28:20 UTC 2022


Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.1330.mcz

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

Name: System-mt.1330
Author: mt
Time: 23 March 2022, 10:28:17.357127 am
UUID: cd055bb3-fade-4447-89b7-6b3d41ea305c
Ancestors: System-mt.1329

For pref category lookup, use #sameAs: not #= to ignore letter case.

=============== Diff against System-mt.1329 ===============

Item was changed:
  ----- Method: Preferences class>>preferencesInCategory: (in category 'support') -----
  preferencesInCategory: aCategorySymbol 
  	"Answer a list of Preference objects that reside in the given category."
  
  	^ self allPreferences select: [ :aPreference |
+ 		aPreference categoryList anySatisfy: [ :aCategory |
+ 			aCategory sameAs: aCategorySymbol ]]!
- 		aPreference categoryList includes: aCategorySymbol ]!



More information about the Squeak-dev mailing list