#REFACTORING by stefan
authorStefan Vogel <sv@exept.de>
Fri, 18 Nov 2016 16:04:04 +0100
changeset 20989 42266e2b5d40
parent 20988 9d8802a18388
child 20990 38e8d0c58aa1
#REFACTORING by stefan class: Dictionary changed: #allKeysDo: fix obsolete and unused method
Dictionary.st
--- a/Dictionary.st	Fri Nov 18 16:03:33 2016 +0100
+++ b/Dictionary.st	Fri Nov 18 16:04:04 2016 +0100
@@ -297,6 +297,7 @@
 ! !
 
 
+
 !Dictionary methodsFor:'accessing'!
 
 associationAt:aKey
@@ -1635,7 +1636,7 @@
     <resource:#obsolete>
 
     self obsoleteMethodWarning:'please use #keysDo:'.
-    ^ super do:aBlock
+    ^ self keysDo:aBlock
 
     "Modified: 20.4.1996 / 11:22:01 / cg"
 !