#FEATURE by cg expecco_18_2_1
authorClaus Gittinger <cg@exept.de>
Wed, 13 Feb 2019 22:10:53 +0100
changeset 23735 77363fc65861
parent 23734 8fc7d08c2743
child 23736 bbebf6d907e9
#FEATURE by cg class: OrderedDictionary changed: #copyValuesFrom:to: class: OrderedDictionary class changed: #version_CVS
OrderedDictionary.st
--- a/OrderedDictionary.st	Wed Feb 13 21:21:34 2019 +0100
+++ b/OrderedDictionary.st	Wed Feb 13 22:10:53 2019 +0100
@@ -668,7 +668,7 @@
     |outColl|
 
     endIndex < startIndex ifTrue:[
-        ^ self copyEmpty
+        ^ OrderedCollection new
     ].
     (startIndex < 1 or:[ endIndex > order size ]) ifTrue:[
         ^ self errorNotFound
@@ -680,6 +680,7 @@
     ^ outColl
 
     "Created: / 13-02-2019 / 18:03:19 / Claus Gittinger"
+    "Modified: / 13-02-2019 / 21:44:04 / Claus Gittinger"
 !
 
 copyValuesTo:endIndex