[Pkg] The Trunk: System-tpr.654.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Jan 1 00:49:04 UTC 2014


tim Rowledge uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-tpr.654.mcz

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

Name: System-tpr.654
Author: tpr
Time: 31 December 2013, 4:48:00.451 pm
UUID: cbacd566-fabe-4c17-b05c-de4ee3d4c334
Ancestors: System-fbs.653

remove some unsent methods as tagged by isThisEverCalled

=============== Diff against System-fbs.653 ===============

Item was removed:
- ----- Method: AbstractLauncher>>numericParameterAtOneOf:ifAbsent: (in category 'private') -----
- numericParameterAtOneOf: alternateParameterNames ifAbsent: aBlock
- 	"Return the parameter named using one of the alternate names or an empty string"
- 
- 	| parameterValue |
- self isThisEverCalled.
- 	parameterValue := self parameterAtOneOf: alternateParameterNames.
- 	parameterValue isEmpty
- 		ifTrue: [^aBlock value].
- 	^[Number readFrom: parameterValue] ifError: aBlock 
- 
- !

Item was removed:
- ----- Method: AbstractLauncher>>parameterAtOneOf: (in category 'private') -----
- parameterAtOneOf: alternateParameterNames
- 	| parameterName |
- 	"Return the parameter named using one of the alternate names or an empty string"
- self isThisEverCalled.
- 	parameterName := self determineParameterNameFrom: alternateParameterNames.
- 	^parameterName isNil
- 		ifTrue: ['']
- 		ifFalse: [self parameterAt: parameterName ifAbsent: ['']]!



More information about the Packages mailing list