tmf: Remove the concept of block size in event requests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui / src / org / eclipse / linuxtools / tmf / ui / views / histogram / HistogramRequest.java
index 7df67cb160b1b9c5e77a758b00e67392e65f03aa..f9af599affea34dc9c1d3119f0b48735dac9d29a 100644 (file)
@@ -20,7 +20,6 @@ import org.eclipse.linuxtools.tmf.core.request.ITmfDataRequest;
 import org.eclipse.linuxtools.tmf.core.request.TmfEventRequest;
 import org.eclipse.linuxtools.tmf.core.timestamp.ITmfTimestamp;
 import org.eclipse.linuxtools.tmf.core.timestamp.TmfTimeRange;
-import org.eclipse.linuxtools.tmf.core.trace.ITmfTrace;
 
 /**
  * Class to request events for given time range from a trace to fill a HistogramDataModel and HistogramView.
@@ -65,9 +64,7 @@ public class HistogramRequest extends TmfEventRequest {
     public HistogramRequest(HistogramDataModel histogram, TmfTimeRange range,
             int rank, int nbEvents, int blockSize,
             ITmfDataRequest.ExecutionType execType) {
-        super(ITmfEvent.class, range, rank, nbEvents,
-                (blockSize > 0) ? blockSize : ITmfTrace.DEFAULT_TRACE_CACHE_SIZE,
-                execType);
+        super(ITmfEvent.class, range, rank, nbEvents, execType);
         fHistogram = histogram;
     }
 
This page took 0.023455 seconds and 5 git commands to generate.