changed: #stop
authorClaus Gittinger <cg@exept.de>
Fri, 18 Nov 2011 14:07:36 +0100
changeset 2674 88904093a5aa
parent 2673 ea71dab56953
child 2675 ba4427ed6582
changed: #stop ifNil removed
BackgroundJob.st
--- a/BackgroundJob.st	Wed Oct 26 17:31:13 2011 +0200
+++ b/BackgroundJob.st	Fri Nov 18 14:07:36 2011 +0100
@@ -285,24 +285,24 @@
 stop
     | t |
 
-    (t := thread) ifNil:[^self].
+    (t := thread) isNil ifTrue:[^self].
     thread := nil.
     t terminate.
     "/ raise its prio to make it terminate quickly
     t priority:(Processor userSchedulingPriority + 1)
 
     "Created: / 28-04-2011 / 20:31:18 / Jan Vrany <jan.vrany@fit.cvut.cz>"
-    "Modified (format): / 03-08-2011 / 16:41:53 / cg"
+    "Modified: / 18-11-2011 / 14:07:28 / cg"
 ! !
 
 !BackgroundJob class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundJob.st,v 1.8 2011-08-05 20:03:09 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundJob.st,v 1.9 2011-11-18 13:07:36 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundJob.st,v 1.8 2011-08-05 20:03:09 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundJob.st,v 1.9 2011-11-18 13:07:36 cg Exp $'
 !
 
 version_SVN