Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/ctfadaptor/CtfTmfEvent.java4
1 files changed, 1 insertions, 3 deletions
diff --git a/lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/ctfadaptor/CtfTmfEvent.java b/lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/ctfadaptor/CtfTmfEvent.java
index 76a325e0a5..76d337ea0e 100644
--- a/lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/ctfadaptor/CtfTmfEvent.java
+++ b/lttng/org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/ctfadaptor/CtfTmfEvent.java
@@ -80,9 +80,7 @@ public final class CtfTmfEvent implements ITmfEvent {
}
/* Read the base event info */
- // FIXME restore once the CTF parser with clocks gets merged
- //Long offset = originTrace.getCTFTrace().getOffset();
- Long offset = 0L;
+ Long offset = originTrace.getCTFTrace().getOffset();
this.timestamp = eventDef.timestamp + offset;
this.sourceCPU = eventDef.getCPU();
this.typeId = eventDef.getDeclaration().getId();

Back to the top