checkin from browser
authorcg
Mon, 07 Jun 1999 09:51:21 +0000
changeset 560 35f85d72be10
parent 559 8632100a5ecb
child 561 79393f7d63f1
checkin from browser
JavaUnresolvedClassConstant.st
--- a/JavaUnresolvedClassConstant.st	Wed May 26 11:15:10 1999 +0000
+++ b/JavaUnresolvedClassConstant.st	Mon Jun 07 09:51:21 1999 +0000
@@ -76,7 +76,9 @@
         "/ a ref for newarray or new or checkCast
 
         s := fullName readStream.
-        s next.
+        [ s peek == $[ ] whileTrue:[
+            s next.
+        ].
         nm := JavaMethod retvalSpecFromStream:s in:nil.
         ^ nm
     ].
@@ -369,5 +371,5 @@
 !JavaUnresolvedClassConstant class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedClassConstant.st,v 1.38 1999/04/14 11:46:51 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaUnresolvedClassConstant.st,v 1.39 1999/06/07 09:51:21 cg Exp $'
 ! !