JavaVM.st
changeset 475 9f72432385fc
parent 474 6e583001b16c
child 476 49d910487403
--- a/JavaVM.st	Wed Dec 02 23:24:00 1998 +0000
+++ b/JavaVM.st	Thu Dec 03 12:15:08 1998 +0000
@@ -1489,7 +1489,7 @@
     cpu = 'i386' ifTrue:[
         cpu := 'ix86'
     ].
-    SimulatedOS := 'Solaris' notNil ifTrue:[
+    SimulatedOS notNil ifTrue:[
         os := SimulatedOS
     ] ifFalse:[
         os := OperatingSystem getOSType.
@@ -1538,7 +1538,7 @@
     "
 
     "Created: / 3.1.1998 / 14:26:39 / cg"
-    "Modified: / 2.12.1998 / 23:09:13 / cg"
+    "Modified: / 3.12.1998 / 00:28:21 / cg"
 !
 
 initializeVM
@@ -10493,6 +10493,6 @@
 !JavaVM class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.84 1998/12/02 23:24:00 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.85 1998/12/03 12:15:08 cg Exp $'
 ! !
 JavaVM initialize!