tmf: Make TmfEventField immutable
[deliverable/tracecompass.git] / org.eclipse.linuxtools.tmf.core / src / org / eclipse / linuxtools / tmf / core / event / TmfEvent.java
index 04c0b92485d94fd6aa9dc16a6a29a9ec3a713dae..61e2c1c52a8e55ae324c43d1fcffb9b529d392c7 100644 (file)
@@ -247,7 +247,7 @@ public class TmfEvent implements ITmfEvent, IAdaptable, Cloneable {
             clone.fTimestamp = fTimestamp;
             clone.fSource = fSource;
             clone.fType = fType != null ? fType.clone() : null;
-            clone.fContent = fContent != null ? fContent.clone() : null;
+            clone.fContent = fContent;
             clone.fReference = fReference;
         } catch (final CloneNotSupportedException e) {
         }
This page took 0.024188 seconds and 5 git commands to generate.