*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 07 Dec 2006 17:54:01 +0100
changeset 1794 603885d999ca
parent 1793 65e5a97507ba
child 1795 e52a638e2a81
*** empty log message ***
SharedCollection.st
--- a/SharedCollection.st	Wed Dec 06 15:33:45 2006 +0100
+++ b/SharedCollection.st	Thu Dec 07 17:54:01 2006 +0100
@@ -9,7 +9,6 @@
  other person.  No title to or ownership of the software is
  hereby transferred.
 "
-
 "{ Package: 'stx:libbasic2' }"
 
 Collection subclass:#SharedCollection
@@ -117,11 +116,13 @@
 
     |msg rslt|
 
-    msg := thisContext sender message.
+    "/ msg := thisContext sender message.
     accessLock critical:[
         rslt := aMessage sendTo:realCollection
     ].
     ^ rslt
+
+    "Modified: / 07-12-2006 / 17:38:30 / cg"
 !
 
 size
@@ -156,5 +157,5 @@
 !SharedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.5 2006-05-10 15:20:19 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.6 2006-12-07 16:54:01 cg Exp $'
 ! !