Fix clone of CtfTmfTimestamp in CtfTmfEvent.
authorPatrick Tasse <patrick.tasse@gmail.com>
Thu, 23 Aug 2012 18:30:30 +0000 (14:30 -0400)
committerPatrick Tasse <patrick.tasse@gmail.com>
Thu, 23 Aug 2012 18:33:15 +0000 (14:33 -0400)
Change-Id: I7e118cf0c9b82990ed9628acf66c004eab37f0b7

org.eclipse.linuxtools.tmf.core/src/org/eclipse/linuxtools/tmf/core/ctfadaptor/CtfTmfEvent.java

index b1d5ec0cf7c4051dd2388bae906b945e0541897e..4fc75aa137c11f4849f17e2866877ccea38cb03f 100644 (file)
@@ -143,6 +143,7 @@ public final class CtfTmfEvent implements ITmfEvent, Cloneable {
 
         /* Copy the fields over */
         this.fContent = (CtfTmfContent) other.fContent.clone();
+        this.fTimestamp = other.fTimestamp.clone();
     }
 
     /**
This page took 0.024632 seconds and 5 git commands to generate.