JavaConstantPool.st
changeset 383 6c20ce98a9d3
parent 328 d60ca4d84850
child 427 a7083b7a8724
--- a/JavaConstantPool.st	Sat Oct 17 12:56:21 1998 +0000
+++ b/JavaConstantPool.st	Sat Oct 17 12:56:52 1998 +0000
@@ -107,7 +107,7 @@
 
 refersToMethodNamed:aJavaMethodName
     self do:[:constItem |
-        (constItem isMemberOf:JavaMethod) ifTrue:[
+        (constItem isKindOf:JavaMethod) ifTrue:[
             constItem name = aJavaMethodName ifTrue:[^ true].
         ] ifFalse:[
             (constItem isMemberOf:JavaMethodref) ifTrue:[
@@ -120,8 +120,8 @@
     ].
     ^ false
 
-    "Modified: 29.7.1997 / 17:38:35 / cg"
-    "Created: 29.7.1997 / 17:39:24 / cg"
+    "Created: / 29.7.1997 / 17:39:24 / cg"
+    "Modified: / 16.10.1998 / 01:22:02 / cg"
 ! !
 
 !JavaConstantPool methodsFor:'special'!
@@ -190,5 +190,5 @@
 !JavaConstantPool class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaConstantPool.st,v 1.10 1998/04/02 14:39:19 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaConstantPool.st,v 1.11 1998/10/17 12:56:52 cg Exp $'
 ! !