Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / lttng2 / ust / core / analysis / memory / UstMemoryAnalysisModule.java
index 82f87e56b5bee4e92915cb51f91a36ad907b68fe..c5df05d2ff9952baf93b976bf20e43bb974a3a6c 100644 (file)
@@ -108,7 +108,7 @@ public class UstMemoryAnalysisModule extends TmfStateSystemAnalysisModule {
         TmfAnalysisRequirement domainReq = new TmfAnalysisRequirement(SessionConfigStrings.CONFIG_ELEMENT_DOMAIN);
         domainReq.addValue(SessionConfigStrings.CONFIG_DOMAIN_TYPE_UST, ValuePriorityLevel.MANDATORY);
 
-        return checkNotNull(ImmutableSet.of(domainReq, eventsReq));
+        return ImmutableSet.of(domainReq, eventsReq);
     }
 
     @Override
This page took 0.024832 seconds and 5 git commands to generate.