JavaUnresolvedClassConstant.st
changeset 261 d95d5a3cc475
parent 255 2d8b3948a08a
child 264 44aedfcd08d1
--- a/JavaUnresolvedClassConstant.st	Mon Jan 12 23:18:07 1998 +0000
+++ b/JavaUnresolvedClassConstant.st	Fri Jan 16 16:12:55 1998 +0000
@@ -185,7 +185,7 @@
             ^ ref
         ].
         fullName = '[I' ifTrue:[     "/ int[]
-            ref := JavaBuiltInClassPointerRef class:Array nameandType:fullName.
+            ref := JavaBuiltInClassPointerRef class:SignedIntegerArray nameandType:fullName.
             constantPool at:constantPoolIndex put:ref.
             ^ ref
         ].
@@ -195,7 +195,7 @@
             ^ ref
         ].
         fullName = '[S' ifTrue:[     "/ short[]
-            ref := JavaBuiltInClassPointerRef class:WordArray nameandType:fullName.
+            ref := JavaBuiltInClassPointerRef class:SignedWordArray nameandType:fullName.
             constantPool at:constantPoolIndex put:ref.
             ^ ref
         ].
@@ -242,5 +242,5 @@
 !JavaUnresolvedClassConstant class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedClassConstant.st,v 1.23 1998/01/12 14:24:38 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedClassConstant.st,v 1.24 1998/01/16 16:12:39 cg Exp $'
 ! !