#REFACTORING by cg
authorClaus Gittinger <cg@exept.de>
Sun, 03 Mar 2019 23:16:40 +0100
changeset 3646 41efae926aa9
parent 3645 d63702a90407
child 3647 7833be8fb641
#REFACTORING by cg class: MethodFinderWindow changed: #updateImplementorsOf:
MethodFinderWindow.st
--- a/MethodFinderWindow.st	Fri Mar 01 16:01:08 2019 +0100
+++ b/MethodFinderWindow.st	Sun Mar 03 23:16:40 2019 +0100
@@ -1207,11 +1207,7 @@
     (anInteger isNil) ifTrue:[
         ^ self
     ].
-    anInteger isNil ifTrue:[
-        aNumber := 1
-    ] ifFalse:[
-        aNumber := anInteger
-    ].
+    aNumber := anInteger ? 1.
     methods := SystemBrowser 
             findImplementorsOf:(resultSelectors at:aNumber)
             in:Smalltalk allClasses
@@ -1229,7 +1225,7 @@
     ].
 
     "Modified (comment): / 24-06-2012 / 18:41:45 / cg"
-    "Modified: / 01-03-2019 / 16:00:38 / Claus Gittinger"
+    "Modified: / 03-03-2019 / 23:13:43 / Claus Gittinger"
 !
 
 updateListAfterPatternSearch:resultList