Fixed bug in BridgeResource.java 37/75137/1
authorezhil <ezhrajam@in.ibm.com>
Fri, 28 Dec 2018 18:27:38 +0000 (23:57 +0530)
committerezhil <ezhrajam@in.ibm.com>
Fri, 28 Dec 2018 18:27:48 +0000 (23:57 +0530)
Fixed major bug as per sonar
Change-Id: I3386f4523147975b2e5af7afaebe2d9c0b7bcd8f
Issue-ID: DMAAP-898
Signed-off-by: ezhil <ezhrajam@in.ibm.com>
src/main/java/org/onap/dmaap/dbcapi/resources/BridgeResource.java

index f1466ee..becc7df 100644 (file)
@@ -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());