Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / common / org.eclipse.tracecompass.common.core / src / org / eclipse / tracecompass / common / core / TraceCompassActivator.java
index 5e2cc18feae4f427e61104f21b209ec21fd0686d..39266d6f0c4e2fe79686d5eeb27ba4d537f48f2c 100644 (file)
@@ -12,7 +12,6 @@
 
 package org.eclipse.tracecompass.common.core;
 
-import static org.eclipse.tracecompass.common.core.NonNullUtils.checkNotNull;
 import static org.eclipse.tracecompass.common.core.NonNullUtils.nullToEmptyString;
 
 import java.util.Collections;
@@ -38,7 +37,7 @@ public abstract class TraceCompassActivator extends Plugin {
 
     /** Map of all the registered activators, indexed by plugin ID */
     private static final Map<String, TraceCompassActivator> ACTIVATORS =
-            checkNotNull(Collections.synchronizedMap(new HashMap<String, TraceCompassActivator>()));
+            Collections.synchronizedMap(new HashMap<String, TraceCompassActivator>());
 
     /** This instance's plug-in ID */
     private final String fPluginId;
This page took 0.024702 seconds and 5 git commands to generate.