Levente Uzonyi uploaded a new version of ShoutCore to project The Trunk:
http://source.squeak.org/trunk/ShoutCore-ul.53.mcz==================== Summary ====================
Name: ShoutCore-ul.53
Author: ul
Time: 9 July 2015, 9:02:55.969 pm
UUID: 37c4556b-dd26-4057-9e75-31334495ba7e
Ancestors: ShoutCore-ul.52
In SHMCClassDefinition >> #sharedPools, the global should be added to the result instead of a block.
=============== Diff against ShoutCore-ul.52 ===============
Item was changed:
----- Method: SHMCClassDefinition>>sharedPools (in category 'act like a class') -----
sharedPools
| d |
d := Set new.
classDefinition poolDictionaries do:[:each |
+ d add: (Smalltalk at: each asSymbol ifAbsent:[nil]) ].
- d add: [Smalltalk at: each asSymbol ifAbsent:[nil]] ].
^d!