Finalize ITmfTrace API
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / ctfadaptor / TestParams.java
index cbf149d82a2006240d780aa39860bb3faee21ce3..9a0a25704eef47296f693a4aaf4a28eb7a069133 100644 (file)
@@ -16,8 +16,6 @@ public abstract class TestParams {
     private static final File emptyFile = new File(""); //$NON-NLS-1$
     private static CtfTmfTrace emptyTrace = new CtfTmfTrace();
 
-    private final static int PAGE_SIZE = 1000;
-
     public static File getEmptyFile() {
         return emptyFile;
     }
@@ -29,7 +27,7 @@ public abstract class TestParams {
     public static CtfTmfTrace createTrace() throws FileNotFoundException {
         if ( testTrace1 == null ) {
             testTrace1 = new CtfTmfTrace();
-            testTrace1.initTrace("test-trace", testTracePath1, CtfTmfEvent.class,PAGE_SIZE); //$NON-NLS-1$
+            testTrace1.initTrace("test-trace", testTracePath1, CtfTmfEvent.class); //$NON-NLS-1$
         }
         return testTrace1;
     }
This page took 0.024757 seconds and 5 git commands to generate.