#REFACTORING by exept
authorClaus Gittinger <cg@exept.de>
Fri, 08 Nov 2019 08:57:36 +0100
changeset 24889 e02fbeda3470
parent 24888 654beb89f150
child 24890 7453e1747201
#REFACTORING by exept class: MessageSend changed: #cull:
MessageSend.st
--- a/MessageSend.st	Fri Nov 08 08:56:29 2019 +0100
+++ b/MessageSend.st	Fri Nov 08 08:57:36 2019 +0100
@@ -170,7 +170,7 @@
     "activate the receiver with one or zero arguments.
      Squeak compatibility, but also present in VW Smalltalk"
 
-    selector argumentCount >= 1 ifTrue:[^ self value:optionalFirstArg].
+    selector argumentCount > 0 ifTrue:[^ self value:optionalFirstArg].
     ^ self value
 
     "Modified: / 03-06-2014 / 12:40:17 / Jan Vrany <jan.vrany@fit.cvut.cz>"