Kaydet (Commit) 1f2ee097 authored tarafından Oliver Bolte's avatar Oliver Bolte

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
üst b62fb941
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
* *
* $RCSfile: CallWatchThread.java,v $ * $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 * The Contents of this file are made available subject to the terms of
* either of the following licenses * either of the following licenses
...@@ -74,13 +74,7 @@ public class CallWatchThread extends Thread ...@@ -74,13 +74,7 @@ public class CallWatchThread extends Thread
private boolean bAlive; private boolean bAlive;
private long nTimeout; private long nTimeout;
private static ThreadGroup aWatcherGroup;
static
{
aWatcherGroup = new ThreadGroup("OOoBean Call Watcher Threads");
aWatcherGroup.setDaemon(false);
}
public CallWatchThread(long nTimeout) public CallWatchThread(long nTimeout)
{ {
...@@ -89,7 +83,8 @@ public class CallWatchThread extends Thread ...@@ -89,7 +83,8 @@ public class CallWatchThread extends Thread
public CallWatchThread( long nTimeout, String aTag ) public CallWatchThread( long nTimeout, String aTag )
{ {
super(aWatcherGroup, aTag);
super(aTag);
this.aWatchedThread = Thread.currentThread(); this.aWatchedThread = Thread.currentThread();
this.nTimeout = nTimeout; this.nTimeout = nTimeout;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment