BackgroundQueueProcessingJob.st
changeset 2584 a6cbe910605d
parent 2575 b86b3329f23c
child 2587 e149cfcded61
--- a/BackgroundQueueProcessingJob.st	Wed Jul 27 13:07:08 2011 +0200
+++ b/BackgroundQueueProcessingJob.st	Fri Jul 29 12:55:27 2011 +0200
@@ -64,14 +64,6 @@
 "
 ! !
 
-!BackgroundQueueProcessingJob class methodsFor:'instance creation'!
-
-new
-    "return an initialized instance"
-
-    ^ self basicNew initialize.
-! !
-
 !BackgroundQueueProcessingJob methodsFor:'adding & removing'!
 
 add: object
@@ -92,11 +84,11 @@
 initialize
     "Invoked when a new instance is created."
 
-
+    super initialize.
     queue := OrderedCollection new.
     queueAccessLock := RecursionLock new.
 
-    "Modified: / 18-05-2011 / 23:25:30 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 29-07-2011 / 10:22:42 / Jan Vrany <jan.vrany@fit.cvut.cz>"
 ! !
 
 !BackgroundQueueProcessingJob methodsFor:'processing'!
@@ -128,7 +120,7 @@
 !BackgroundQueueProcessingJob class methodsFor:'documentation'!
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundQueueProcessingJob.st,v 1.2 2011-07-03 17:50:13 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/BackgroundQueueProcessingJob.st,v 1.3 2011-07-29 10:55:27 vrany Exp $'
 !
 
 version_SVN