[Pkg] The Trunk: Chronology-Core-dtl.33.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jan 22 17:04:13 UTC 2019


David T. Lewis uploaded a new version of Chronology-Core to project The Trunk:
http://source.squeak.org/trunk/Chronology-Core-dtl.33.mcz

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

Name: Chronology-Core-dtl.33
Author: dtl
Time: 22 January 2019, 12:04:12.747583 pm
UUID: 002bc836-c58b-49e4-9a33-37d54449e32c
Ancestors: Chronology-Core-ul.23

Restore Duration>>wait which was introduced in  Chronology-Core-mt.11 and accidently removed in recent updates.

=============== Diff against Chronology-Core-ul.23 ===============

Item was added:
+ ----- Method: Duration>>wait (in category 'squeak protocol') -----
+ wait
+ 	"Convert this duration in a delay and wait once. Return the created delay so that the client can wait on it again if needed.
+ 	
+ 	Do-it: 3 minutes wait"
+ 	
+ 	| delay |
+ 	delay := self asDelay.
+ 	delay wait.
+ 	^ delay!



More information about the Packages mailing list