Array.st
changeset 20172 0855ffd234fa
parent 20149 3edf2e29ed0d
child 20205 03e626304d06
child 20240 124746fe4618
--- a/Array.st	Thu Jul 21 22:43:49 2016 +0200
+++ b/Array.st	Fri Jul 22 09:10:07 2016 +0200
@@ -633,15 +633,14 @@
      Return aCollection.
      Redefined here for slightly more speed."
 
-    |stop "{ Class: SmallInteger }"|
+    |each stop "{ Class: SmallInteger }"|
 
     stop := self size.
     1 to:stop do:[:idx |
-	|each|
-	each := self at:idx.
-	each notNil ifTrue:[
-	    aCollection add:each.
-	].
+        each := self at:idx.
+        each notNil ifTrue:[
+            aCollection add:each.
+        ].
     ].
     ^ aCollection