diff options
author | Arindam Mondal <arind.mondal@samsung.com> | 2019-04-30 15:04:26 +0900 |
---|---|---|
committer | arind.mondal <arind.mondal@samsung.com> | 2019-04-30 15:16:03 +0900 |
commit | 9b8317e9be83e8ca011955a0660398b0c1f6e0be (patch) | |
tree | 1f65262dc3ea183488c28181f3d82a517387b245 | |
parent | d402a7d0e3bfdfbd2a3d6cfce2c9f170a30c4192 (diff) |
Sonar fix NullPointerException
Issue-ID: SO-1829
Change-Id: I2b09733698391607989c2289b8c9f8ba5cdfabe4
Signed-off-by: arind.mondal <arind.mondal@samsung.com>
-rw-r--r-- | bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/pnf/dmaap/PnfEventReadyDmaapClient.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/pnf/dmaap/PnfEventReadyDmaapClient.java b/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/pnf/dmaap/PnfEventReadyDmaapClient.java index cce476f4d8..9f8a456002 100644 --- a/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/pnf/dmaap/PnfEventReadyDmaapClient.java +++ b/bpmn/so-bpmn-infrastructure-common/src/main/java/org/onap/so/bpmn/infrastructure/pnf/dmaap/PnfEventReadyDmaapClient.java @@ -140,7 +140,9 @@ public class PnfEventReadyDmaapClient implements DmaapClient { registerClientResponse(idList.get(0), EntityUtils.toString(response.getEntity(), "UTF-8")); } - idList.forEach(this::informAboutPnfReadyIfPnfCorrelationIdFound); + if (idList != null) { + idList.forEach(this::informAboutPnfReadyIfPnfCorrelationIdFound); + } } catch (IOException e) { logger.error("Exception caught during sending rest request to dmaap for listening event topic", e); } finally { |