diff options
author | Oliver Bolte <obo@openoffice.org> | 2005-04-18 10:55:10 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2005-04-18 10:55:10 +0000 |
commit | 1f2ee097e8c3da563e1c400eca54d518f7a4ffe0 (patch) | |
tree | 1c4ba5b033c7b72f0994c99de8d2e0caba4b6fdf /bean/com | |
parent | b62fb9411dfdfcb4b46192ed29954d3ed2e0df7b (diff) |
INTEGRATION: CWS fwkfinal8 (1.2.2); FILE MERGED
2005/04/05 14:44:31 jl 1.2.2.1: #i46616# CallWatchThread does not create its own ThreadGroup anymore, because that caused an exception in jre1.4.2._06
Diffstat (limited to 'bean/com')
-rw-r--r-- | bean/com/sun/star/comp/beans/CallWatchThread.java | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/bean/com/sun/star/comp/beans/CallWatchThread.java b/bean/com/sun/star/comp/beans/CallWatchThread.java index 5ec4ac2e9bc1..e5b80a520862 100644 --- a/bean/com/sun/star/comp/beans/CallWatchThread.java +++ b/bean/com/sun/star/comp/beans/CallWatchThread.java @@ -2,9 +2,9 @@ * * $RCSfile: CallWatchThread.java,v $ * - * $Revision: 1.2 $ + * $Revision: 1.3 $ * - * last change: $Author: vg $ $Date: 2005-03-23 08:58:39 $ + * last change: $Author: obo $ $Date: 2005-04-18 11:55:10 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -74,13 +74,7 @@ public class CallWatchThread extends Thread private boolean bAlive; private long nTimeout; - private static ThreadGroup aWatcherGroup; - static - { - aWatcherGroup = new ThreadGroup("OOoBean Call Watcher Threads"); - aWatcherGroup.setDaemon(false); - } public CallWatchThread(long nTimeout) { @@ -89,7 +83,8 @@ public class CallWatchThread extends Thread public CallWatchThread( long nTimeout, String aTag ) { - super(aWatcherGroup, aTag); + + super(aTag); this.aWatchedThread = Thread.currentThread(); this.nTimeout = nTimeout; |