#TUNING by cg
authorClaus Gittinger <cg@exept.de>
Wed, 11 Dec 2019 11:50:26 +0100
changeset 19352 19f5a590cae1
parent 19351 b6350f5d7ae3
child 19353 adface297050
#TUNING by cg class: Tools::NewSystemBrowser changed: #checkCompilabilityOf:withExtensions:errorsOnly:notify:reportFailedMethodsInto:
Tools__NewSystemBrowser.st
--- a/Tools__NewSystemBrowser.st	Wed Dec 11 11:40:00 2019 +0100
+++ b/Tools__NewSystemBrowser.st	Wed Dec 11 11:50:26 2019 +0100
@@ -31143,6 +31143,7 @@
                             aBlock value:aMethod value:('No source for method: ',aMethod whoString).
                         ] ifFalse:[
                             eachClass compilerClass new
+                                ignoreWarnings:true;
                                 compile:aMethod source
                                 forClass:aMethod mclass
                                 inCategory:'others'
@@ -31151,9 +31152,7 @@
                                 skipIfSame:false
                                 silent:false
                                 foldConstants:true
-                                ifFail:[
-                                    aBlock value:aMethod value:('not compilable: ',aMethod whoString).
-                                ]
+                                ifFail:[ aBlock value:aMethod value:('not compilable: ',aMethod whoString) ]
                         ]
                     ]
             ]