From b36c390935a18e0a6883ee31399178e6ab8e7de5 Mon Sep 17 00:00:00 2001 From: ezhil Date: Fri, 28 Dec 2018 23:57:38 +0530 Subject: [PATCH] Fixed bug in BridgeResource.java Fixed major bug as per sonar Change-Id: I3386f4523147975b2e5af7afaebe2d9c0b7bcd8f Issue-ID: DMAAP-898 Signed-off-by: ezhil --- src/main/java/org/onap/dmaap/dbcapi/resources/BridgeResource.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/java/org/onap/dmaap/dbcapi/resources/BridgeResource.java b/src/main/java/org/onap/dmaap/dbcapi/resources/BridgeResource.java index f1466ee..becc7df 100644 --- a/src/main/java/org/onap/dmaap/dbcapi/resources/BridgeResource.java +++ b/src/main/java/org/onap/dmaap/dbcapi/resources/BridgeResource.java @@ -4,6 +4,8 @@ * ================================================================================ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved. * ================================================================================ + * Modifications Copyright (C) 2018 IBM. + * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -122,7 +124,7 @@ public class BridgeResource extends BaseLoggingClass { } logger.info( "Count for "+ key + ": " + mCnt); totCnt += mCnt; - if (showDetail) { + if (showDetail && mm!=null) { brTopic[s] = new BrTopic(); brTopic[s].setBrSource( mm.getSourceCluster()); brTopic[s].setBrTarget(mm.getTargetCluster()); -- 2.16.6