tmf: Only keep the full constructor in TmfEventField
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.ui.tests / src / org / eclipse / linuxtools / tmf / ui / tests / statistics / TmfBaseStatisticsDataTest.java
index dffdaf3c44c1cdcd02d993efd4415c1c76e57976..fe96cbbaeab1ac4559dd8a8ad6c009abf4884dee 100755 (executable)
@@ -86,13 +86,13 @@ public class TmfBaseStatisticsDataTest {
      * Constructor
      */
     public TmfBaseStatisticsDataTest() {
-        fContent1 = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, "Some content");
+        fContent1 = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, "Some content", null);
         fEvent1 = new TmfEvent(null, fTimestamp1, fSource, fType1, fContent1, fReference);
 
-        fContent2 = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, "Some other content");
+        fContent2 = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, "Some other content", null);
         fEvent2 = new TmfEvent(null, fTimestamp2, fSource, fType2, fContent2, fReference);
 
-        fContent3 = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, "Some other different content");
+        fContent3 = new TmfEventField(ITmfEventField.ROOT_FIELD_ID, "Some other different content", null);
         fEvent3 = new TmfEvent(null, fTimestamp3, fSource, fType3, fContent3, fReference);
 
         fStatsTree = new TmfStatisticsTree();
This page took 0.024323 seconds and 5 git commands to generate.