UIPainterView.st
changeset 3293 911a495e2ed7
parent 3287 0bddeff854d4
child 3304 eb8835656382
--- a/UIPainterView.st	Fri May 06 04:58:41 2016 +0200
+++ b/UIPainterView.st	Sun May 08 02:26:07 2016 +0200
@@ -1766,7 +1766,7 @@
     cls notNil ifTrue:[
         cls withAllSuperclassesDo:[:cls |
             cls methodsDo:[:m |
-                ((m resources ? #()) includesAny:#(uiAspect)) ifTrue:[
+                ((m resources ? #()) includes:#uiAspect) ifTrue:[
                     aspects add:m selector
                 ].                  
             ]
@@ -1799,7 +1799,7 @@
     cls := self targetClass.
     cls notNil ifTrue:[
         cls methodsDo:[:m |
-            ((m resources ? #()) includesAny:#(uiCallback)) ifTrue:[
+            ((m resources ? #()) includes:#uiCallback) ifTrue:[
                 aspects add:m selector
             ].                  
         ]