The Trunk: 60Deprecated-dtl.85.mcz

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

The Trunk: 60Deprecated-dtl.85.mcz

commits-2
David T. Lewis uploaded a new version of 60Deprecated to project The Trunk:
http://source.squeak.org/trunk/60Deprecated-dtl.85.mcz

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

Name: 60Deprecated-dtl.85
Author: dtl
Time: 2 December 2020, 9:44:10.427748 pm
UUID: 010bb2cd-bb23-4d42-aa88-84c21eefaa31
Ancestors: 60Deprecated-mt.84

Deprecate #totalSeconds and #millisecondClockValue in DateAndTime and refer senders to the canonical implementations in Time.

=============== Diff against 60Deprecated-mt.84 ===============

Item was added:
+ ----- Method: DateAndTime class>>millisecondClockValue (in category '*60Deprecated') -----
+ millisecondClockValue
+
+ self deprecated: 'Use Time class>>millisecondClockValue instead'.
+ ^ self clock millisecondClockValue!

Item was added:
+ ----- Method: DateAndTime class>>totalSeconds (in category '*60Deprecated') -----
+ totalSeconds
+
+ self deprecated: 'Use Time class>>totalSeconds instead'.
+ ^ self clock totalSeconds!