[squeak-dev] The Inbox: 311Deprecated-nice.2.mcz

commits at source.squeak.org commits at source.squeak.org
Wed May 22 21:25:17 UTC 2013


A new version of 311Deprecated was added to project The Inbox:
http://source.squeak.org/inbox/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 !



More information about the Squeak-dev mailing list