SharedCollection.st
changeset 3022 869f18437363
parent 3013 28d92a912dfa
child 3212 5c1eba42b00f
--- a/SharedCollection.st	Tue Jun 25 13:24:04 2013 +0200
+++ b/SharedCollection.st	Wed Jun 26 10:00:52 2013 +0200
@@ -137,9 +137,8 @@
 doesNotUnderstand:aMessage
     "catches everything not understood by the collection protocol"
 
-    |msg rslt|
+    |rslt|
 
-    "/ msg := thisContext sender message.
     accessLock critical:[
         rslt := aMessage sendTo:realCollection
     ].
@@ -232,10 +231,10 @@
 !SharedCollection class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.10 2013-06-25 11:23:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.11 2013-06-26 08:00:52 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.10 2013-06-25 11:23:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.11 2013-06-26 08:00:52 stefan Exp $'
 ! !