Fix some null warnings
[deliverable/tracecompass.git] / lttng / org.eclipse.tracecompass.lttng2.ust.core / src / org / eclipse / tracecompass / internal / lttng2 / ust / core / analysis / debuginfo / UstDebugInfoStateProvider.java
index 49d312ac06d53ac30f5064ca35a6c56364a27013..9ef8441220cf2ed19f44d3b75a538d8b30719436 100644 (file)
@@ -207,7 +207,7 @@ public class UstDebugInfoStateProvider extends AbstractTmfStateProvider {
          * Add this library to the pending entries, the matching
          * build_id/debug_link event will finish updating this attribute
          */
-        fPendingEntries.put(baddr, sopath);
+        fPendingEntries.put(baddr, checkNotNull(sopath));
     }
 
     /**
This page took 0.034503 seconds and 5 git commands to generate.