The Trunk: 311Deprecated-nice.2.mcz

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

The Trunk: 311Deprecated-nice.2.mcz

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

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

Name: 311Deprecated-nice.2
Author: nice
Time: 23 February 2010, 2:35:06.779 pm
UUID: 6df45c33-740a-fc4f-b3d0-45412ad7d284
Ancestors: 311Deprecated-ar.1

deprecate Number class>>#readExactlyFrom:
#readFrom: now does the same job.
This was just an interim message for smooth transition introduced in 3.9. Anyway, who would request a readInexactly feature?

=============== Diff against 311Deprecated-ar.1 ===============

Item was added:
+ ----- Method: Number class>>readExactlyFrom: (in category '*311Deprecated') -----
+ readExactlyFrom: stringOrStream
+ "Answer a number as described on aStream. The number may
+ include a leading radix specification, as in 16rFADE"
+
+ self deprecated: 'Use #readFrom: '.
+ ^ self readFrom: stringOrStream !