tmf.core: Introduce TmfTimestamp factory methods
[deliverable/tracecompass.git] / tmf / org.eclipse.tracecompass.tmf.core / src / org / eclipse / tracecompass / internal / tmf / core / trace / indexer / BTreeNode.java
index d8645864054f7fe1e0e8004c0b935cac7713ceba..6dc910fb7d7175243a4ff18163122f6803db293d 100644 (file)
@@ -113,7 +113,7 @@ class BTreeNode {
             for (int i = 0; i < fNumEntries; ++i) {
 
                 ITmfLocation location = fTree.getTrace().restoreLocation(bb);
-                ITmfTimestamp timeStamp = new TmfTimestamp(bb);
+                ITmfTimestamp timeStamp = TmfTimestamp.create(bb);
                 TmfCheckpoint c = new TmfCheckpoint(timeStamp, location, bb);
                 fEntries[i] = c;
             }
This page took 0.025973 seconds and 5 git commands to generate.