class: CodeGeneratorTool
authorClaus Gittinger <cg@exept.de>
Thu, 19 Feb 2015 13:16:12 +0100
changeset 15323 05da4f69e8df
parent 15322 2a7a479bed32
child 15324 190af6d17b2e
class: CodeGeneratorTool changed: #missingRequiredProtocolFor:
CodeGeneratorTool.st
--- a/CodeGeneratorTool.st	Thu Feb 19 13:15:07 2015 +0100
+++ b/CodeGeneratorTool.st	Thu Feb 19 13:16:12 2015 +0100
@@ -863,7 +863,7 @@
 
     aClass allSuperclassesDo:[:eachSuperClass |
         eachSuperClass methodDictionary keysAndValuesDo:[:eachSelector :eachMethod |
-            (eachMethod sends:#subclassResponsibility or:#subclassResponsibility:) ifTrue:[
+            (eachMethod sendsAny:#( #subclassResponsibility #subclassResponsibility: )) ifTrue:[
                 (implementedSelectors includes:eachSelector) ifFalse:[
                     requiredSelectors add:eachSelector.
                 ]
@@ -1790,10 +1790,10 @@
 !CodeGeneratorTool class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.110 2015-01-10 06:43:36 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.111 2015-02-19 12:16:12 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.110 2015-01-10 06:43:36 vrany Exp $'
+    ^ '$Header: /cvs/stx/stx/libtool/CodeGeneratorTool.st,v 1.111 2015-02-19 12:16:12 cg Exp $'
 ! !