The Trunk: System-eem.783.mcz

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

The Trunk: System-eem.783.mcz

commits-2
Eliot Miranda uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-eem.783.mcz

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

Name: System-eem.783
Author: eem
Time: 5 January 2016, 12:34:47.025815 pm
UUID: 68f4c142-1c1c-4582-a8a5-58f7951adc48
Ancestors: System-cwp.782

Drop Utilities' dependence on the soon-to-be-obsolete primSecondClock.

=============== Diff against System-cwp.782 ===============

Item was changed:
  ----- Method: Utilities class>>dateTimeSuffix (in category 'identification') -----
  dateTimeSuffix
  "Answer a string which indicates the date and time, intended for use in building fileout filenames, etc."
 
  "Utilities dateTimeSuffix"
+ ^Preferences twentyFourHourFileStamps
- ^ Preferences twentyFourHourFileStamps
  ifFalse:
+ [self monthDayTimeStringFrom: Time totalSeconds]
- [self monthDayTimeStringFrom: Time primSecondsClock]
  ifTrue:
+ [self monthDayTime24StringFrom: Time totalSeconds]!
- [self monthDayTime24StringFrom: Time primSecondsClock]!