Iterator.st
changeset 2972 729db1782de3
parent 2929 abd01de467c0
child 2997 c752298b3db5
--- a/Iterator.st	Thu Apr 04 09:58:28 2013 +0200
+++ b/Iterator.st	Thu Apr 04 09:58:59 2013 +0200
@@ -299,8 +299,8 @@
     which the receiver enumerates its elements.  In the case of unordered collections,
     the ordering is not necessarily the same for multiple requests for the conversion."
 
+    | anOrderedCollection |
 
-    | anOrderedCollection |
     anOrderedCollection := OrderedCollection new.
     self do: [:each | anOrderedCollection addLast: each].
     ^anOrderedCollection
@@ -398,10 +398,10 @@
 !Iterator class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.23 2013-03-19 09:22:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.24 2013-04-04 07:58:59 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.23 2013-03-19 09:22:32 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic2/Iterator.st,v 1.24 2013-04-04 07:58:59 cg Exp $'
 ! !