1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-03 23:25:26 +02:00

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

This commit is contained in:
David McKnight 2008-04-28 14:32:52 +00:00
parent e63686dc77
commit d6ae5b45a2

View file

@ -11,6 +11,7 @@
*
* Contributors:
* Noriaki Takatsu (IBM) - [220126] [dstore][api][breaking] Single process server for multiple clients
* Noriaki Takatsu (IBM) - [228335] [dstore] [dstore][multithread] start() in SecuredThread class
*******************************************************************************/
package org.eclipse.dstore.core.server;
@ -145,11 +146,15 @@ public class SecuredThread extends Thread
{
try
{
/*
* As per bug 228335, this is commented out.
*
ISystemService systemService = SystemServiceManager.getInstance().getSystemService();
if (systemService != null){
systemService.executeThread(this);
}
else
*/
{
super.start();
}