The Trunk: 60Deprecated-ul.4.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-ul.4.mcz

commits-2
Levente Uzonyi uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-ul.4.mcz

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

Name: 60Deprecated-ul.4
Author: ul
Time: 25 April 2017, 6:39:25.185216 pm
UUID: a8e17d3d-f574-4b75-b464-7ec87ffcd62d
Ancestors: 60Deprecated-tfel.3

- deprecated Object >> #clone

=============== Diff against 60Deprecated-tfel.3 ===============

Item was added:
+ ----- Method: Object>>clone (in category '*60Deprecated-copying') -----
+ clone
+ "Answer a shallow copy of the receiver."
+
+ self deprecated: 'Use #shallowCopy'.
+ ^self shallowCopy!