Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / pcap / org.eclipse.tracecompass.pcap.core / src / org / eclipse / tracecompass / internal / pcap / core / protocol / ethernet2 / EthernetIIPacket.java
index 2f64df9fc59990928b85e15c4c2b62a136293cda..1a11da071a1e49355a08e23a27c249b637b533fe 100644 (file)
@@ -211,7 +211,7 @@ public class EthernetIIPacket extends Packet {
             builder.put("Destination MAC Address", ConversionHelper.toMacAddress(fDestinationMacAddress)); //$NON-NLS-1$
             builder.put("Ethertype", String.valueOf(EthertypeHelper.toEtherType(fType))); //$NON-NLS-1$
 
-            fFields = checkNotNull(builder.build());
+            fFields = builder.build();
             return fFields;
         }
         return map;
This page took 0.027677 seconds and 5 git commands to generate.