#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Sun, 05 Feb 2017 01:36:55 +0100
changeset 17327 bd00cb5dbd5d
parent 17326 f907ddaa9e83
child 17328 e110bd817e78
#REFACTORING by cg class: CodeGeneratorTool changed: #missingRequiredProtocolFor: (send #sendsAnySelector: instead of #sendsAny:)
CodeGeneratorTool.st
--- a/CodeGeneratorTool.st	Sat Feb 04 22:21:31 2017 +0100
+++ b/CodeGeneratorTool.st	Sun Feb 05 01:36:55 2017 +0100
@@ -871,7 +871,7 @@
 
     aClass allSuperclassesDo:[:eachSuperClass |
         eachSuperClass methodDictionary keysAndValuesDo:[:eachSelector :eachMethod |
-            (eachMethod sendsAny:#( #subclassResponsibility #subclassResponsibility: )) ifTrue:[
+            (eachMethod sendsAnySelector:#( #subclassResponsibility #subclassResponsibility: )) ifTrue:[
                 (implementedSelectors includes:eachSelector) ifFalse:[
                     requiredSelectors add:eachSelector.
                 ]
@@ -884,8 +884,8 @@
     ].
     ^ requiredSelectors
 
-    "Modified: / 08-08-2011 / 18:44:58 / cg"
     "Modified: / 10-01-2015 / 06:46:11 / Jan Vrany <jan.vrany@fit.cvut.cz>"
+    "Modified: / 05-02-2017 / 01:27:40 / cg"
 ! !
 
 !CodeGeneratorTool class methodsFor:'utilities - source code'!