The Trunk: Kernel-nice.656.mcz

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

The Trunk: Kernel-nice.656.mcz

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

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

Name: Kernel-nice.656
Author: nice
Time: 19 November 2011, 10:45:57.156 pm
UUID: 506e1645-c5f3-8f4b-8307-0c22476c079e
Ancestors: Kernel-bf.654

Remove one unused message: now that Integer is polymorphic to Fraction he never has to #adaptToFraction:andSend:

=============== Diff against Kernel-bf.654 ===============

Item was removed:
- ----- Method: Integer>>adaptToFraction:andSend: (in category 'converting') -----
- adaptToFraction: rcvr andSend: selector
- "If I am involved in arithmetic with a Fraction, convert me to a Fraction."
- ^ rcvr perform: selector with: (Fraction numerator: self denominator: 1)!