tmf: Make TmfEventFieldAspect independent of event content
[deliverable/tracecompass.git] / org.eclipse.tracecompass.tmf.pcap.core / src / org / eclipse / tracecompass / internal / tmf / pcap / core / event / PcapRootEventField.java
index 6fa53814f0c14a7db505bf6476f38d51184f6c6a..795a70d7e135a16de599ac2c11efeb4541915c0b 100644 (file)
@@ -33,8 +33,6 @@ public class PcapRootEventField extends TmfEventField {
     /**
      * Full constructor
      *
-     * @param value
-     *            The event field value.
      * @param fields
      *            The list of subfields.
      * @param packet
@@ -42,8 +40,8 @@ public class PcapRootEventField extends TmfEventField {
      * @throws IllegalArgumentException
      *             If 'name' is null, or if 'fields' has duplicate field names.
      */
-    public PcapRootEventField(Object value, @Nullable ITmfEventField[] fields, Packet packet) {
-        super(ITmfEventField.ROOT_FIELD_ID, value, fields);
+    public PcapRootEventField(@Nullable ITmfEventField[] fields, Packet packet) {
+        super(ITmfEventField.ROOT_FIELD_ID, null, fields);
         fPacketSourceField = new TmfEventField(PcapEvent.EVENT_FIELD_PACKET_SOURCE,
                 packet.getMostEcapsulatedPacket().getSourceEndpoint().toString(), null);
         fPacketDestinationField = new TmfEventField(PcapEvent.EVENT_FIELD_PACKET_DESTINATION,
This page took 0.025521 seconds and 5 git commands to generate.