# HG changeset patch # User Claus Gittinger # Date 1321621656 -3600 # Node ID 88904093a5aa6788bc94735667de9bb674428aae # Parent ea71dab569531b4ebc581339d095c350f774c839 changed: #stop ifNil removed diff -r ea71dab56953 -r 88904093a5aa 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 " - "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