The Trunk: Kernel-cmm.817.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-cmm.817.mcz

commits-2
Chris Muller uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-cmm.817.mcz

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

Name: Kernel-cmm.817
Author: cmm
Time: 31 October 2013, 8:47:05.439 pm
UUID: a37c9485-212f-4f0d-9e39-69952517d138
Ancestors: Kernel-cmm.816

notNil belongs on ProtoObject along with the other common nil-testing methods.

=============== Diff against Kernel-cmm.816 ===============

Item was removed:
- ----- Method: Object>>notNil (in category 'testing') -----
- notNil
- "Coerces nil to false and everything else to true."
-
- ^true!

Item was added:
+ ----- Method: ProtoObject>>notNil (in category 'testing') -----
+ notNil
+ "Coerces nil to false and everything else to true."
+
+ ^true!