diff options
author | Daniel Boelzle <dbo@openoffice.org> | 2002-11-21 15:49:00 +0000 |
---|---|---|
committer | Daniel Boelzle <dbo@openoffice.org> | 2002-11-21 15:49:00 +0000 |
commit | 7257cf03e4e40b1460e7c16df8b4fb8555982724 (patch) | |
tree | cef3c6d88ee09f8d07598fbfd60ea1f555ff8748 /sandbox/com | |
parent | 715d93b42e48f6d525cf96ef7ea62b2c7a920e3c (diff) |
#102601# fixing log info
Diffstat (limited to 'sandbox/com')
-rw-r--r-- | sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java b/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java index cecd194b246b..8d51de09be02 100644 --- a/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java +++ b/sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java @@ -2,9 +2,9 @@ * * $RCSfile: ClassContextImpl.java,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: dbo $ $Date: 2002-11-11 13:04:48 $ + * last change: $Author: dbo $ $Date: 2002-11-21 16:49:00 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -266,7 +266,6 @@ final class ClassContextImpl extends ClassLoader implements ClassContext { if (class_path != null) { - System.err.println( "class-path read" + class_path ); java.util.Enumeration tokens = new java.util.StringTokenizer( class_path ); while (tokens.hasMoreElements()) @@ -353,13 +352,13 @@ final class ClassContextImpl extends ClassLoader implements ClassContext { public void run() { try { - System.err.println("#### ClassContext - killerThread start"); + if (DEBUG) System.err.println("#### ClassContext - killerThread start"); threadGroup.stop(); threadGroup.destroy(); - System.err.println("#### ClassContext - killerThread succeeded"); + if (DEBUG) System.err.println("#### ClassContext - killerThread succeeded"); } catch(Exception exception) { - System.err.println("ClassContext.dispose:" + exception); + if (DEBUG) System.err.println("ClassContext.dispose:" + exception); } } }; |