The code here: https://github.com/Microsoft/ApplicationInsights-Java/blob/v1.0.9/core/src/main/java/com/microsoft/applicationinsights/internal/util/MapUtil.java#L43 put data into a ConCurrentHashMap but does not have null check. which will casue an NPE error if the `entry.getValue()` is null.
The code here:
https://github.com/Microsoft/ApplicationInsights-Java/blob/v1.0.9/core/src/main/java/com/microsoft/applicationinsights/internal/util/MapUtil.java#L43
put data into a ConCurrentHashMap but does not have null check.
which will casue an NPE error if the
entry.getValue()is null.