#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Thu, 23 Feb 2017 14:22:19 +0100
changeset 4355 9d6595f00a6e
parent 4354 ad0e143f19bb
child 4356 b43523e83a8a
#REFACTORING by stefan class: SharedCollection changed: #initializeFor: set name for Semaphore
SharedCollection.st
--- a/SharedCollection.st	Wed Feb 22 19:08:58 2017 +0100
+++ b/SharedCollection.st	Thu Feb 23 14:22:19 2017 +0100
@@ -119,8 +119,10 @@
 !SharedCollection methodsFor:'initialization'!
 
 initializeFor:aCollection
-    accessLock := RecursionLock new.
+    accessLock := RecursionLock new name:'SharedCollection'.
     realCollection := aCollection.
+
+    "Modified: / 23-02-2017 / 12:41:45 / stefan"
 ! !
 
 !SharedCollection methodsFor:'message forwarding'!