moved #maxNumberOfArguments to superclass
authorClaus Gittinger <cg@exept.de>
Wed, 30 Jul 1997 12:56:17 +0200
changeset 2805 bf4111cfaea4
parent 2804 6b8a6d6bedf0
child 2806 9d3c4cf5f6e9
moved #maxNumberOfArguments to superclass
Method.st
--- a/Method.st	Wed Jul 30 12:45:11 1997 +0200
+++ b/Method.st	Wed Jul 30 12:56:17 1997 +0200
@@ -251,16 +251,6 @@
     "Modified: 23.4.1996 / 15:59:50 / cg"
 !
 
-maxNumberOfArguments
-    "return the maximum number of arguments a method can have.
-     This is a limit in the VM, which may be removed in one of 
-     the next versions ..."
-
-%{  /* NOCONTEXT */
-    RETURN (__MKSMALLINT(MAX_METHOD_ARGS));
-%}
-!
-
 methodPrivacySupported
     "return true, if the system was compiled to support methodPrivacy.
      You should not depend on that feature being available."
@@ -2465,6 +2455,6 @@
 !Method class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.136 1997-07-30 10:44:46 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Method.st,v 1.137 1997-07-30 10:56:17 cg Exp $'
 ! !
 Method initialize!