tmf: Consolidate constructors in TmfExperiment
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.core.tests / stubs / org / eclipse / tracecompass / tmf / tests / stubs / trace / TmfExperimentStub.java
index 2c279572b08ee48822e00d7d81e41538a489677a..5c645a5e5beb34ddaa4d13c937eb3ad19ef23ba3 100644 (file)
@@ -27,12 +27,19 @@ import org.eclipse.tracecompass.tmf.core.trace.indexer.ITmfTraceIndexer;
 @SuppressWarnings("javadoc")
 public class TmfExperimentStub extends TmfExperiment {
 
+    /**
+     * Default constructor. Should not be called directly by the code, but
+     * needed for the extension point.
+     *
+     * @deprecated Only used by the extension point.
+     */
+    @Deprecated
     public TmfExperimentStub() {
         super();
     }
 
     public TmfExperimentStub(String name, ITmfTrace[] traces, int blockSize) {
-        super(ITmfEvent.class, name, traces, blockSize);
+        super(ITmfEvent.class, name, traces, blockSize, null);
     }
 
     @Override
This page took 0.024965 seconds and 5 git commands to generate.