# HG changeset patch # User Stefan Vogel # Date 1558105200 -7200 # Node ID 86d311ea68fd5c5e4bdf244e0654edfe6592c013 # Parent 0d01da886d5a6cafec382013066cbd8f2e10541b #REFACTORING by stefan Sanitize BlockValues class: MethodFinderWindow changed: #arg1BoxVisible #arg2BoxVisible #arg3BoxVisible #arg4BoxVisible diff -r 0d01da886d5a -r 86d311ea68fd MethodFinderWindow.st --- a/MethodFinderWindow.st Fri May 17 16:59:23 2019 +0200 +++ b/MethodFinderWindow.st Fri May 17 17:00:00 2019 +0200 @@ -1252,10 +1252,12 @@ arg1BoxVisible isNil ifTrue:[ arg1BoxVisible := BlockValue - with:[:vh | vh value >= 2 ] + with:[:vh | vh >= 2 ] argument:(self argCountHolder) ]. ^ arg1BoxVisible. + + "Modified: / 17-05-2019 / 16:16:59 / Stefan Vogel" ! arg2BoxVisible @@ -1264,10 +1266,12 @@ arg2BoxVisible isNil ifTrue:[ arg2BoxVisible := BlockValue - with:[:vh | vh value >= 3 ] + with:[:vh | vh >= 3 ] argument:(self argCountHolder) ]. ^ arg2BoxVisible. + + "Modified: / 17-05-2019 / 16:16:54 / Stefan Vogel" ! arg3BoxVisible @@ -1276,10 +1280,12 @@ arg3BoxVisible isNil ifTrue:[ arg3BoxVisible := BlockValue - with:[:vh | vh value >= 4 ] + with:[:vh | vh >= 4 ] argument:(self argCountHolder) ]. ^ arg3BoxVisible. + + "Modified: / 17-05-2019 / 16:16:48 / Stefan Vogel" ! arg4BoxVisible @@ -1288,10 +1294,12 @@ arg4BoxVisible isNil ifTrue:[ arg4BoxVisible := BlockValue - with:[:vh | vh value >= 5 ] + with:[:vh | vh >= 5 ] argument:(self argCountHolder) ]. ^ arg4BoxVisible. + + "Modified: / 17-05-2019 / 16:16:43 / Stefan Vogel" ! argCountHolder