1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-10 17:55:39 +02:00

[228335] [dstore][multithread] start() in SecuredThread class

This commit is contained in:
David McKnight 2008-04-28 18:19:26 +00:00
parent 8e5e935608
commit 5202697be6

View file

@ -144,17 +144,18 @@ public class SecuredThread extends Thread
*/ */
public void start() public void start()
{ {
try
{
/* /*
* As per bug 228335, this is commented out. * As per bug 228335, this is commented out.
* *
try
{
ISystemService systemService = SystemServiceManager.getInstance().getSystemService(); ISystemService systemService = SystemServiceManager.getInstance().getSystemService();
if (systemService != null){ if (systemService != null){
systemService.executeThread(this); systemService.executeThread(this);
} }
else else
*/
{ {
super.start(); super.start();
} }
@ -163,6 +164,8 @@ public class SecuredThread extends Thread
{ {
e.printStackTrace(new PrintWriter(System.err)); e.printStackTrace(new PrintWriter(System.err));
} }
*/
super.start();
} }
} }