The Trunk: Collections-mt.817.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Collections-mt.817.mcz

commits-2
Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.817.mcz

==================== Summary ====================

Name: Collections-mt.817
Author: mt
Time: 25 January 2019, 9:42:56.826457 am
UUID: 25009a5a-3d03-ea42-8c4a-f1a5e01b218d
Ancestors: Collections-mt.816

Un-deprecate "flush" SharedQueue2. See Levente's thoughts on this topic: http://forum.world.st/Stream-SharedQueue2-39Deprecated-flush-td5094045.html

=============== Diff against Collections-mt.816 ===============

Item was added:
+ ----- Method: SharedQueue2>>flush (in category 'accessing') -----
+ flush
+ self deprecated: 'use removeAll'.
+ ^self removeAll!

Item was added:
+ ----- Method: SharedQueue2>>flushAllSuchThat: (in category 'accessing') -----
+ flushAllSuchThat: aBlock
+ self deprecated: 'use removeAllSuchThat:'.
+
+ ^self removeAllSuchThat: aBlock!