#REFACTORING by exept
authorClaus Gittinger <cg@exept.de>
Fri, 08 Nov 2019 08:56:29 +0100
changeset 24888 654beb89f150
parent 24887 3002901e43ad
child 24889 e02fbeda3470
#REFACTORING by exept class: Block changed: #cull:
Block.st
--- a/Block.st	Fri Nov 08 08:53:25 2019 +0100
+++ b/Block.st	Fri Nov 08 08:56:29 2019 +0100
@@ -495,7 +495,7 @@
     "activate the receiver with one or zero arguments.
      Squeak compatibility, but also present in VW Smalltalk"
 
-    nargs >= 1 ifTrue:[^ self value:optionalFirstArg].
+    nargs > 0 ifTrue:[^ self value:optionalFirstArg].
     ^ self value
 !