JavaClass.st
changeset 236 46195f733e51
parent 229 b91c9462ac83
child 247 67dd93db3d80
--- a/JavaClass.st	Mon Aug 18 15:54:37 1997 +0000
+++ b/JavaClass.st	Mon Aug 18 17:27:17 1997 +0000
@@ -114,7 +114,7 @@
 
 !JavaClass class methodsFor:'method lookup'!
 
-lookupMethod:selector numArgs:nargs in:aClass static:static
+lookupMethod:selector numArgs:nargs in:aClass static:staticMethod
     "lookup a method"
 
     |method cls sel|
@@ -137,7 +137,7 @@
                 or:[aMethod signatureNameWithoutReturnType = sel]])
                 ifTrue:[
                     aMethod numArgs == nargs ifTrue:[
-                        static ifTrue:[
+                        staticMethod ifTrue:[
                             aMethod isStatic ifTrue:[
                                 ^ aMethod
                             ]
@@ -1405,6 +1405,6 @@
 !JavaClass class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaClass.st,v 1.62 1997/08/18 10:40:11 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaClass.st,v 1.63 1997/08/18 17:27:17 cg Exp $'
 ! !
 JavaClass initialize!