Delay.st
branchjv
changeset 18084 ab5b38bd8f81
parent 18079 7b5afc0ad3d5
parent 15630 9e0f47e44106
child 18120 e3a375d5f6a8
--- a/Delay.st	Mon Aug 19 23:30:27 2013 +0100
+++ b/Delay.st	Tue Aug 20 00:07:19 2013 +0100
@@ -162,11 +162,7 @@
 
 until:aTimeStamp
     "return a new Delay object, that will delay the active process
-     until the system has reached the time represented by the argument.
-     BUG:
-        due to the limited range of the millisecondTimer, this can 
-        (currently) not be used for long delays. The maximum supported
-        delay is returned by OperatingSystem>>maximumMillisecondTimeDelta."
+     until the system has reached the time represented by the argument."
 
     |numberOfMilliseconds|
 
@@ -176,8 +172,7 @@
 
 untilMilliseconds:aMillisecondTime
     "return a new Delay object, that will delay the active process
-     until the systems millisecond time has reached aMillisecondTime.
-    "
+     until the systems millisecond time has reached aMillisecondTime."
 
     ^ self new resumptionTime:aMillisecondTime
 
@@ -364,10 +359,10 @@
 !Delay class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Delay.st,v 1.47 2013-07-25 09:35:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Delay.st,v 1.48 2013-08-16 09:38:32 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/Delay.st,v 1.47 2013-07-25 09:35:36 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Delay.st,v 1.48 2013-08-16 09:38:32 stefan Exp $'
 ! !