Add @Override annotation above method signature. 83/27683/1
authoraishkashyap <as00476394@techmahindra.com>
Tue, 9 Jan 2018 07:04:02 +0000 (12:34 +0530)
committeraishkashyap <as00476394@techmahindra.com>
Tue, 9 Jan 2018 07:04:43 +0000 (12:34 +0530)
Add the @Override annotation above method signature.

Sonar Link:
https://sonar.onap.org/component_issues/index?id=org.onap.aai.router-core%3Arouter-core#resolved=false|assignees=aishkashyap

Location:
src/main/java/org/onap/aai/event/EventBusEndpoint.java

Line No:79

Issue-ID: AAI-610
Change-Id: I444b6ce466b473aa6a8a5216d65157fc7f07274f
Signed-off-by: aishkashyap <as00476394@techmahindra.com>
src/main/java/org/onap/aai/event/EventBusEndpoint.java

index 965dc72..0634b05 100644 (file)
@@ -75,7 +75,7 @@ public class EventBusEndpoint extends DefaultEndpoint {
   public EventBusEndpoint(String endpointUri) {
     super(endpointUri);
   }
-
+  @Override
   public Producer createProducer() throws Exception {
     return new EventBusProducer(this);
   }