The Trunk: 60Deprecated-nice.34.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: 60Deprecated-nice.34.mcz

commits-2
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!