[squeak-dev] The Inbox: PackageInfo-Base-lrnp.76.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Mar 10 18:47:41 UTC 2022


A new version of PackageInfo-Base was added to project The Inbox:
http://source.squeak.org/inbox/PackageInfo-Base-lrnp.76.mcz

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

Name: PackageInfo-Base-lrnp.76
Author: lrnp
Time: 10 March 2022, 11:47:40.930817 am
UUID: 945610f2-700c-4c15-b21d-b8e8afc50a18
Ancestors: PackageInfo-Base-mt.75

complements Tools-mt.1140

Treat the nil system category as a nonexistent package.

=============== Diff against PackageInfo-Base-mt.75 ===============

Item was changed:
  ----- Method: PackageOrganizer>>packageOfSystemCategory:ifNone: (in category 'searching') -----
  packageOfSystemCategory: aSystemCategory ifNone: errorBlock
+ 	aSystemCategory
+ 		ifNil: [^errorBlock value]
+ 		ifNotNil: [
+ 			^ self packages detect: [:ea | ea includesSystemCategory: aSystemCategory] ifNone: errorBlock]!
- 	^ self packages detect: [:ea | ea includesSystemCategory: aSystemCategory] ifNone: errorBlock
- !



More information about the Squeak-dev mailing list