[squeak-dev] The Trunk: System-mt.771.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Oct 17 16:39:16 UTC 2015


Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.771.mcz

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

Name: System-mt.771
Author: mt
Time: 17 October 2015, 6:38:55.72 pm
UUID: 4aee8d76-cfcf-ad48-ae3e-6d971ce6fea9
Ancestors: System-cmm.770

Log change stamps at the granularity of seconds not only minutes.

Why? A minute is quite long and it is likely to have two method (versions) with the same timestamp.

=============== Diff against System-cmm.770 ===============

Item was changed:
  ----- Method: Utilities class>>changeStamp (in category 'identification') -----
  changeStamp 
  	"Answer a string to be pasted into source code to mark who changed it and when."
  	^ self authorInitials , ' ' , Date today mmddyyyy, ' ',
+ 		((String streamContents: [:s | Time now print24: true on: s]) copyFrom: 1 to: 8)!
- 		((String streamContents: [:s | Time now print24: true on: s]) copyFrom: 1 to: 5)!



More information about the Squeak-dev mailing list