[Pkg] Monticello Public: PackageInfo-Base-kph.69.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Mon Feb 23 01:11:04 UTC 2009


A new version of PackageInfo-Base was added to project Monticello Public:
http://www.squeaksource.com/mc/PackageInfo-Base-kph.69.mcz

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

Name: PackageInfo-Base-kph.69
Author: kph
Time: 23 February 2009, 1:10:58 am
UUID: d4254ea4-0146-11de-8efb-000a95edb42a
Ancestors: PackageInfo-Base-kph.67

fix propertyAt: key ifAbsentPut: valBlock


=============== Diff against PackageInfo-Base-kph.67 ===============

Item was changed:
  ----- Method: PackageInfo>>propertyAt:ifAbsentPut: (in category 'preamble/postscript') -----
  propertyAt: key ifAbsentPut: valBlock
  
+ 	properties ifNil:[ ^ self propertyAt: key put: valBlock value ].
- 	properties ifNil:[ ^ self propertyAt: key put: valBlock ].
  	
+ 	^ properties at: key ifAbsent: [ self propertyAt: key put: valBlock value ]!
- 	^ properties at: key ifAbsent: [ self propertyAt: key put: valBlock ]!



More information about the Packages mailing list