1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-09 17:25:38 +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()
{
try
{
/*
* As per bug 228335, this is commented out.
*
try
{
ISystemService systemService = SystemServiceManager.getInstance().getSystemService();
if (systemService != null){
systemService.executeThread(this);
}
else
*/
{
super.start();
}
@ -163,6 +164,8 @@ public class SecuredThread extends Thread
{
e.printStackTrace(new PrintWriter(System.err));
}
*/
super.start();
}
}