JavaVM.st
changeset 597 e2c95a395f71
parent 595 045ea996d63a
child 600 78174752509d
--- a/JavaVM.st	Sat Aug 21 11:36:13 1999 +0000
+++ b/JavaVM.st	Sat Aug 21 14:09:30 1999 +0000
@@ -6689,7 +6689,7 @@
             ]
         ].
 
-        ok := sock connectTo:hostName port:port.
+        ok := sock connectTo:hostName port:port blocking:true.
         ok ifFalse:[
             self throwIOExceptionWithMessage:'connect failed'.
         ]
@@ -12050,6 +12050,6 @@
 !JavaVM class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.158 1999/08/21 11:35:42 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.159 1999/08/21 14:09:30 cg Exp $'
 ! !
 JavaVM initialize!