Marcel Taeumel uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-mt.825.mcz==================== Summary ====================
Name: System-mt.825
Author: mt
Time: 9 May 2016, 10:31:15.970377 am
UUID: dfbd9b4f-f443-7f4e-8ab1-3ae64be157e0
Ancestors: System-mt.824
Moves etoys-specific code that was still in the base system.
=============== Diff against System-mt.824 ===============
Item was removed:
- ----- Method: Project>>currentStack: (in category 'accessing') -----
- currentStack: aStack
- "Set the current stack as indicated; if the parameter supplied is nil, delete any prior memory of the CurrentStack"
-
- aStack
- ifNil:
- [self removeParameter: #CurrentStack]
- ifNotNil:
- [self projectParameterAt: #CurrentStack put: aStack]!