Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / pcap / org.eclipse.tracecompass.pcap.core / src / org / eclipse / tracecompass / internal / pcap / core / protocol / udp / UDPPacket.java
index 169c2f51d3a7f93adb765f8bf18f678312481cbd..8503ba2ee2ba572bea50b27422b1addbd4f52876 100644 (file)
@@ -212,7 +212,7 @@ public class UDPPacket extends Packet {
                     .put("Length", String.valueOf(fTotalLength) + " bytes") //$NON-NLS-1$ //$NON-NLS-2$
                     .put("Checksum", String.format("%s%04x", "0x", fChecksum)); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
 
-            fFields = NonNullUtils.checkNotNull(builder.build());
+            fFields = builder.build();
             return fFields;
         }
         return map;
This page took 0.024176 seconds and 5 git commands to generate.