Marcel Taeumel uploaded a new version of PackageInfo-Base to project The Trunk:
http://source.squeak.org/trunk/PackageInfo-Base-mt.71.mcz==================== Summary ====================
Name: PackageInfo-Base-mt.71
Author: mt
Time: 4 August 2019, 12:16:40.254314 pm
UUID: 9a97317a-1734-6740-9988-202aa1045196
Ancestors: PackageInfo-Base-jr.70
Merges and extends PackageInfo-Base-ct.70, which I moved to treated inbox due to incompatible ancestry.
Adds ifPresent-interface (known from Dictionary) to package organizer.
=============== Diff against PackageInfo-Base-jr.70 ===============
Item was added:
+ ----- Method: PackageOrganizer>>packageNamed:ifPresent: (in category 'searching') -----
+ packageNamed: aString ifPresent: aBlock
+ ^ packages at: aString ifPresent: aBlock!
Item was added:
+ ----- Method: PackageOrganizer>>packageNamed:ifPresent:ifAbsent: (in category 'searching') -----
+ packageNamed: aString ifPresent: aBlock ifAbsent: errorBlock
+ ^ packages at: aString ifPresent: aBlock ifAbsent: errorBlock!