Remove unneeded checkNotNull() calls
[deliverable/tracecompass.git] / pcap / org.eclipse.tracecompass.pcap.core / src / org / eclipse / tracecompass / internal / pcap / core / protocol / unknown / UnknownPacket.java
index c214995b416236441a1699cd74afac3c2eb3d06a..ac181a95b48d788f604627352f682a36a84f4dc5 100644 (file)
@@ -143,7 +143,7 @@ public class UnknownPacket extends Packet {
             } catch (UnsupportedEncodingException e) {
                 // Do nothing. The string won't be added to the map anyway.
             }
-            fFields = checkNotNull(builder.build());
+            fFields = builder.build();
             return fFields;
         }
         return map;
This page took 0.026286 seconds and 5 git commands to generate.