summaryrefslogtreecommitdiff
path: root/sandbox
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2002-11-21 15:49:00 +0000
committerDaniel Boelzle <dbo@openoffice.org>2002-11-21 15:49:00 +0000
commit1bb3db22c4f7eb3dc071ed40fe50a2f139da1a65 (patch)
tree0ec9607589a06d61bc610bacfc5e9c060df5bf1c /sandbox
parente6d3bbfcb88bfda85d8a5fcf7556f92a65d2f05b (diff)
#102601# fixing log info
Diffstat (limited to 'sandbox')
-rw-r--r--sandbox/com/sun/star/lib/sandbox/ClassContextImpl.java11
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 949921ca07..cbbdb407b7 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);
}
}
};