Nicolas Cellier uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-nice.95.mcz==================== Summary ====================
Name: 60Deprecated-nice.95
Author: nice
Time: 13 April 2021, 10:17:44.93442 pm
UUID: b9ef6a0f-b252-cb46-ae0c-aea4982aab49
Ancestors: 60Deprecated-dtl.93
Deprecate findInterned: in favour of more explicit lookup:
Considering that:
- findInterned: is a long standing selector,
- some external package probably still use it,
(refactoring browser is at this time of writing)
- the image update mechanism might still use it during the transition,
(depending on package load order)
we prefer to use a simple flag rather than a Deprecation warning.
=============== Diff against 60Deprecated-dtl.93 ===============
Item was added:
+ ----- Method: Symbol class>>findInterned: (in category '*60Deprecated-instance creation') -----
+ findInterned:aString
+ self flag: #deprecated. "use lookup: instead, they are synonym"
+ ^self lookup: aString!