JavaVM.st
changeset 485 1895aeb34bbf
parent 484 9748fd077801
child 486 e23b6ce7ca4e
--- a/JavaVM.st	Sat Dec 05 13:43:51 1998 +0000
+++ b/JavaVM.st	Sat Dec 05 13:45:19 1998 +0000
@@ -7549,13 +7549,12 @@
     view isNil ifTrue:[^ nil].
 
     p := view originRelativeTo:nil.
-p printCR.
     jP := (Java classForName:'java.awt.Point') basicNew.
     jP instVarNamed:'x' put:p x.
     jP instVarNamed:'y' put:p y.
     ^ jP
 
-    "Modified: / 5.12.1998 / 14:28:41 / cg"
+    "Modified: / 5.12.1998 / 14:44:31 / cg"
 !
 
 _WComponentPeer_handleEvent:nativeContext
@@ -10668,6 +10667,6 @@
 !JavaVM class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.92 1998/12/05 13:43:51 cg Exp $'
+    ^ '$Header: /home/jv/Projects/SmalltalkX/repositories/cvs/stx/libjava/JavaVM.st,v 1.93 1998/12/05 13:45:19 cg Exp $'
 ! !
 JavaVM initialize!