Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorddunne2010-04-05 17:40:21 +0000
committerddunne2010-04-05 17:40:21 +0000
commit10cd3e36a7a4728eb19da046a8696476680fdd41 (patch)
tree3c874e8aafdf5a1350a2dafdfca757160682de12
parenta9e2636f1fba74e389fc123fd1204feebd697057 (diff)
downloadorg.eclipse.osee-10cd3e36a7a4728eb19da046a8696476680fdd41.tar.gz
org.eclipse.osee-10cd3e36a7a4728eb19da046a8696476680fdd41.tar.xz
org.eclipse.osee-10cd3e36a7a4728eb19da046a8696476680fdd41.zip
debug flag off
-rw-r--r--plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/InternalEventManager.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/InternalEventManager.java b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/InternalEventManager.java
index b7931197989..24ecd5d3a92 100644
--- a/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/InternalEventManager.java
+++ b/plugins/org.eclipse.osee.framework.skynet.core/src/org/eclipse/osee/framework/skynet/core/event/InternalEventManager.java
@@ -23,6 +23,7 @@ import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.ThreadFactory;
import java.util.logging.Level;
+import org.eclipse.core.runtime.Platform;
import org.eclipse.osee.framework.core.enums.RelationSide;
import org.eclipse.osee.framework.core.exception.OseeAuthenticationRequiredException;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
@@ -84,9 +85,8 @@ public class InternalEventManager {
// should be reset to false before release.
private static boolean enableRemoteEventLoopback = false;
- private static final boolean DEBUG = true;
-
- // "TRUE".equalsIgnoreCase(Platform.getDebugOption("org.eclipse.osee.framework.skynet.core/debug/Events"));
+ private static final boolean DEBUG =
+ "TRUE".equalsIgnoreCase(Platform.getDebugOption("org.eclipse.osee.framework.skynet.core/debug/Events"));
// Kick LOCAL "remote event manager" event
static void kickRemoteEventManagerEvent(final Sender sender, final RemoteEventServiceEventType remoteEventServiceEventType) throws OseeCoreException {

Back to the top