Remove the generic location (replace by Comparable)
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core.tests / src / org / eclipse / linuxtools / tmf / core / tests / trace / TmfCheckpointTest.java
index 90f996f08242f56a07a565537aaa2787532f1a56..bedaa6991bbf7a323e95fcf69b51c4b6605b1f01 100644 (file)
@@ -39,9 +39,9 @@ public class TmfCheckpointTest extends TestCase {
     Long aLong1 = 12345L;
     Long aLong2 = 23456L;
     Long aLong3 = 34567L;
-    ITmfLocation<Long> fLocation1 = new TmfLongLocation(aLong1);
-    ITmfLocation<Long> fLocation2 = new TmfLongLocation(aLong2);
-    ITmfLocation<Long> fLocation3 = new TmfLongLocation(aLong3);
+    ITmfLocation fLocation1 = new TmfLongLocation(aLong1);
+    ITmfLocation fLocation2 = new TmfLongLocation(aLong2);
+    ITmfLocation fLocation3 = new TmfLongLocation(aLong3);
 
     TmfCheckpoint fCheckpoint1 = new TmfCheckpoint(fTimestamp1, new TmfContext(fLocation1));
     TmfCheckpoint fCheckpoint2 = new TmfCheckpoint(fTimestamp2, new TmfContext(fLocation2));
This page took 0.02371 seconds and 5 git commands to generate.