SharedCollection.st
changeset 3022 869f18437363
parent 3013 28d92a912dfa
child 3212 5c1eba42b00f
equal deleted inserted replaced
3021:1c303429ca85 3022:869f18437363
   135 !
   135 !
   136 
   136 
   137 doesNotUnderstand:aMessage
   137 doesNotUnderstand:aMessage
   138     "catches everything not understood by the collection protocol"
   138     "catches everything not understood by the collection protocol"
   139 
   139 
   140     |msg rslt|
   140     |rslt|
   141 
   141 
   142     "/ msg := thisContext sender message.
       
   143     accessLock critical:[
   142     accessLock critical:[
   144         rslt := aMessage sendTo:realCollection
   143         rslt := aMessage sendTo:realCollection
   145     ].
   144     ].
   146     ^ rslt
   145     ^ rslt
   147 
   146 
   230 ! !
   229 ! !
   231 
   230 
   232 !SharedCollection class methodsFor:'documentation'!
   231 !SharedCollection class methodsFor:'documentation'!
   233 
   232 
   234 version
   233 version
   235     ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.10 2013-06-25 11:23:01 cg Exp $'
   234     ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.11 2013-06-26 08:00:52 stefan Exp $'
   236 !
   235 !
   237 
   236 
   238 version_CVS
   237 version_CVS
   239     ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.10 2013-06-25 11:23:01 cg Exp $'
   238     ^ '$Header: /cvs/stx/stx/libbasic2/SharedCollection.st,v 1.11 2013-06-26 08:00:52 stefan Exp $'
   240 ! !
   239 ! !
   241 
   240