From 5202697be6c11884127b8f66647dda5e9a48cf33 Mon Sep 17 00:00:00 2001 From: David McKnight Date: Mon, 28 Apr 2008 18:19:26 +0000 Subject: [PATCH] [228335] [dstore][multithread] start() in SecuredThread class --- .../org/eclipse/dstore/core/server/SecuredThread.java | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/server/SecuredThread.java b/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/server/SecuredThread.java index 1458fdcd4bd..9b94212b402 100644 --- a/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/server/SecuredThread.java +++ b/rse/plugins/org.eclipse.dstore.core/src/org/eclipse/dstore/core/server/SecuredThread.java @@ -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(); } }