remove unused var i in decodeFromLiteralArray:
authorab
Wed, 24 Oct 2001 11:00:46 +0200
changeset 6101 1827c91ad965
parent 6100 a3af162517fe
child 6102 7fdf73f3256b
remove unused var i in decodeFromLiteralArray:
Dictionary.st
--- a/Dictionary.st	Wed Oct 24 10:59:04 2001 +0200
+++ b/Dictionary.st	Wed Oct 24 11:00:46 2001 +0200
@@ -158,7 +158,7 @@
 decodeFromLiteralArray:anArray
     "create & return a new instance from information encoded in anArray."
 
-    |col i|
+    |col|
 
     col := self new.
     2 to:anArray size by:2 do:[:idx | |key val|
@@ -1883,6 +1883,6 @@
 !Dictionary class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.74 2001-10-24 08:59:04 ab Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Dictionary.st,v 1.75 2001-10-24 09:00:46 ab Exp $'
 ! !
 Dictionary initialize!