#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Fri, 13 Apr 2018 15:21:34 +0200
changeset 22672 82462813ccac
parent 22671 03d29bf8c5bb
child 22673 d6c573129fc4
#REFACTORING by stefan class: Collection changed: #removeAllSuchThat:
Collection.st
--- a/Collection.st	Fri Apr 13 15:20:37 2018 +0200
+++ b/Collection.st	Fri Apr 13 15:21:34 2018 +0200
@@ -1338,7 +1338,7 @@
     self do:[:eachElement |
         (aBlock value:eachElement) ifTrue:[
             removedElements isNil ifTrue:[
-                removedElements := OrderedCollection new.
+                removedElements := self speciesForAdding new.
             ].
             removedElements add:eachElement
         ]
@@ -1375,7 +1375,7 @@
      coll     
     "
 
-    "Modified (format): / 03-03-2017 / 18:59:57 / stefan"
+    "Modified: / 13-04-2018 / 13:13:08 / stefan"
 !
 
 removeFirst