diff options
author | Kay Ramme <kr@openoffice.org> | 2000-10-27 07:04:39 +0000 |
---|---|---|
committer | Kay Ramme <kr@openoffice.org> | 2000-10-27 07:04:39 +0000 |
commit | 273dc52837cf988d756a6bdf7293dc1ce154fa99 (patch) | |
tree | 598c6c7724a07b6b0aa84905b9d4f37aac91eed6 /jut | |
parent | 15ea117ea63188586345cdb6776f26346d119ed7 (diff) |
debug disabled; cleaned
Diffstat (limited to 'jut')
-rw-r--r-- | jut/com/sun/star/tools/uno/UnoApp.java | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/jut/com/sun/star/tools/uno/UnoApp.java b/jut/com/sun/star/tools/uno/UnoApp.java index e2aa4e8f6bf2..c555a6668ac3 100644 --- a/jut/com/sun/star/tools/uno/UnoApp.java +++ b/jut/com/sun/star/tools/uno/UnoApp.java @@ -2,9 +2,9 @@ * * $RCSfile: UnoApp.java,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: kr $ $Date: 2000-10-19 15:31:11 $ + * last change: $Author: kr $ $Date: 2000-10-27 08:04:39 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -100,7 +100,7 @@ import com.sun.star.uno.Type; * <p> */ public class UnoApp { - static public final boolean DEBUG = true; + static public final boolean DEBUG = false; /** * Bootstraps a servicemanager with some base components registered. @@ -422,7 +422,7 @@ public class UnoApp { unoApp._context = RegistryServiceFactory.create(args[index[0] ++]); unoApp._creator = this; - System.err.println("got RegistryServiceFactory:" + unoApp._context); + if(DEBUG) System.err.println("##### " + getClass().getName() + " - got RegistryServiceFactory:" + unoApp._context); } Object create(UnoApp unoApp) throws Exception { @@ -672,7 +672,7 @@ public class UnoApp { if(unoApp._uno_url != null) // see, if we have to export the object export(unoApp._xMultiServiceFactory, unoApp._uno_url, object); else - System.err.println("result: " + object); + System.out.println("result: " + object); } |