[Pkg] Installer: Installer-Formats-kph.4.mcz

squeak-dev-noreply at lists.squeakfoundation.org squeak-dev-noreply at lists.squeakfoundation.org
Tue Mar 10 00:02:58 UTC 2009


A new version of Installer-Formats was added to project Installer:
http://www.squeaksource.com/Installer/Installer-Formats-kph.4.mcz

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

Name: Installer-Formats-kph.4
Author: kph
Time: 10 March 2009, 12:02:45 am
UUID: ca245492-0d06-11de-987b-000a95edb42a
Ancestors: Installer-Formats-kph.3

= fixed an assignment to a method temporary

=============== Diff against Installer-Formats-kph.3 ===============

Item was changed:
  ----- Method: MczInstaller>>associate: (in category 'utilities') -----
  associate: tokens
  	| result |
  	result := Dictionary new.
  	tokens pairsDo: [:key :value | 
+ 		
+ 					| theValue |
+ 					
+ 					theValue := value.
+ 					
+ 					value isString ifFalse: [theValue := value collect: [:ea | self associate: ea]].
+ 					
+ 					theValue = 'nil' ifTrue: [theValue := ''].
+ 					result at: key put: theValue].
- 					value isString ifFalse: [value := value collect: [:ea | self associate: ea]].
- 					value = 'nil' ifTrue: [value := ''].
- 					result at: key put: value].
  	^ result!



More information about the Packages mailing list