From f0b347bf1bae14a5ab68f7c3c77edb439f94cfaf Mon Sep 17 00:00:00 2001 From: megacz Date: Fri, 30 Jan 2004 08:04:19 +0000 Subject: [PATCH] 2004/01/19 20:57:21 darcs-hash:20040130080419-2ba56-1edaa64bf1db787ec165aef78e49b624054e4916.gz --- src/org/xwt/Platform.java | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/org/xwt/Platform.java b/src/org/xwt/Platform.java index 8c4df6e..af837a4 100644 --- a/src/org/xwt/Platform.java +++ b/src/org/xwt/Platform.java @@ -39,7 +39,7 @@ public abstract class Platform { // reflection. static { - System.err.println("Detecting JVM..."); + System.err.print("Detecting JVM..."); try { String vendor = System.getProperty("java.vendor", ""); String version = System.getProperty("java.version", ""); @@ -60,7 +60,8 @@ public abstract class Platform { Log.error(Platform.class, "Unable to detect JVM"); criticalAbort("Unable to detect JVM"); } - + + System.err.println(" " + os_name + " ==> org.xwt.plat." + platform_class); if (platform_class != null) Class.forName("org.xwt.plat." + platform_class).newInstance(); String term = Platform.getEnv("TERM"); -- 1.7.10.4