#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Wed, 22 Feb 2017 15:32:00 +0100
changeset 4344 f0115b3b9a86
parent 4343 6ed3f8281ea6
child 4345 0000c66ef9f0
#REFACTORING by stefan class: BackgroundQueueProcessingJob changed: #stopAndRemoveAll no need for #critical: when doing assignment
BackgroundQueueProcessingJob.st
--- a/BackgroundQueueProcessingJob.st	Wed Feb 22 11:21:15 2017 +0100
+++ b/BackgroundQueueProcessingJob.st	Wed Feb 22 15:32:00 2017 +0100
@@ -212,11 +212,10 @@
      items in a queue"
 
     self stop.
-    queueAccessLock critical:[
-        queue := OrderedCollection new.
-    ]
+    queue := OrderedCollection new.
 
     "Created: / 09-04-2012 / 17:18:09 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 22-02-2017 / 15:09:41 / stefan"
 ! !
 
 !BackgroundQueueProcessingJob methodsFor:'utilities'!