tmf: Remove the concept of block size in event requests
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / stubs / org / eclipse / linuxtools / tmf / tests / stubs / request / TmfDataRequestStub.java
index 164002248cc1b9dbff5fef32393ec0bcb081d550..e36dd2c939b8b10b2218c0ee7cc4edaa7d98a7b0 100644 (file)
@@ -26,7 +26,7 @@ public class TmfDataRequestStub extends TmfDataRequest {
      * @param dataType the request data type
      */
     public TmfDataRequestStub(final Class<? extends ITmfEvent> dataType) {
-        super(dataType, 0, ALL_DATA, DEFAULT_BLOCK_SIZE, ExecutionType.FOREGROUND);
+        super(dataType, 0, ALL_DATA, ExecutionType.FOREGROUND);
     }
 
     /**
@@ -34,7 +34,7 @@ public class TmfDataRequestStub extends TmfDataRequest {
      * @param index the initial event index
      */
     public TmfDataRequestStub(final Class<? extends ITmfEvent> dataType, final int index) {
-        super(dataType, index, ALL_DATA, DEFAULT_BLOCK_SIZE, ExecutionType.FOREGROUND);
+        super(dataType, index, ALL_DATA, ExecutionType.FOREGROUND);
     }
 
     /**
@@ -44,18 +44,7 @@ public class TmfDataRequestStub extends TmfDataRequest {
      */
     public TmfDataRequestStub(final Class<? extends ITmfEvent> dataType,
             final int index, final int nbRequested) {
-        super(dataType, index, nbRequested, DEFAULT_BLOCK_SIZE, ExecutionType.FOREGROUND);
-    }
-
-    /**
-     * @param dataType the request data type
-     * @param index the initial event index
-     * @param nbRequested the number of events requested
-     * @param blockSize the event block size
-     */
-    public TmfDataRequestStub(final Class<? extends ITmfEvent> dataType,
-            final int index, final int nbRequested, final int blockSize) {
-        super(dataType, index, nbRequested, blockSize, ExecutionType.FOREGROUND);
+        super(dataType, index, nbRequested, ExecutionType.FOREGROUND);
     }
 
     @Override
This page took 0.023979 seconds and 5 git commands to generate.