[squeak-dev] The Trunk: 60Deprecated-nice.34.mcz

commits at source.squeak.org commits at source.squeak.org
Tue May 7 07:26:54 UTC 2019


Nicolas Cellier uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-nice.34.mcz

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

Name: 60Deprecated-nice.34
Author: nice
Time: 7 May 2019, 9:26:52.899828 am
UUID: 882e9027-6b0f-4ef4-9ab6-02e2dff2df3b
Ancestors: 60Deprecated-tpr.33

Deprecate	RunArray>>addLast:times:

Companion change to Collections-nice.830/Collections-nice.499

=============== Diff against 60Deprecated-tpr.33 ===============

Item was added:
+ ----- Method: RunArray>>addLast:times: (in category '*60Deprecated') -----
+ addLast: value times: times
+ 	"Add value as the last element of the receiver, the given number of times"
+ 	self deprecated: 'use add:withOccurrences:'.
+ 	^self add: value withOccurrences: times!



More information about the Squeak-dev mailing list