The Trunk: Kernel-ul.960.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-ul.960.mcz

commits-2
Levente Uzonyi uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-ul.960.mcz

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

Name: Kernel-ul.960
Author: ul
Time: 10 October 2015, 4:04:01.102 pm
UUID: fc40b663-cd1f-453e-bd76-2dd015be9582
Ancestors: Kernel-ul.959

- fix #seconds:nanoseconds: -> #seconds:nanoSeconds:

=============== Diff against Kernel-ul.959 ===============

Item was changed:
  ----- Method: Duration class>>days:hours:minutes:seconds:nanoSeconds: (in category 'squeak protocol') -----
  days: days hours: hours minutes: minutes seconds: seconds nanoSeconds: nanos
 
    ^self
  seconds: seconds
  + (minutes * SecondsInMinute)
  + (hours * SecondsInHour)
  + (days * SecondsInDay)
+ nanoSeconds: nanos
- nanoseconds: nanos
  !