David T. Lewis uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-dtl.214.mcz==================== Summary ====================
Name: Collections-dtl.214
Author: dtl
Time: 29 November 2009, 10:32:29 am
UUID: 357d781b-6b29-47ba-a2f2-74faf72585ed
Ancestors: Collections-nice.213
Use "Project current" idiom in TestSqkProjectLink>>actOnClickFor:
Move SharedQueue2>>removeAll and SharedQueue2>>removeAllSuchThat: from category "*39Deprecated" back to "accessing". These had been put in the 39Deprecated package, but have never been marked deprecated (and should not be).
=============== Diff against Collections-nice.213 ===============
Item was added:
+ ----- Method: SharedQueue2>>removeAll (in category 'accessing') -----
+ removeAll
+ monitor critical: [
+ items next: (items size) ].!
Item was added:
+ ----- Method: SharedQueue2>>removeAllSuchThat: (in category 'accessing') -----
+ removeAllSuchThat: aBlock
+ "Remove from the queue all objects that satisfy aBlock."
+ monitor critical: [
+ items removeAllSuchThat: aBlock ]!
Item was changed:
----- Method: TextSqkProjectLink>>actOnClickFor: (in category 'as yet unclassified') -----
actOnClickFor: textMorph
+ Project current enterIfThereOrFind: url.
- Project enterIfThereOrFind: url.
^ true!