Sonar Major:Add the @Override annotation. 13/27713/1
authoraishkashyap <as00476394@techmahindra.com>
Tue, 9 Jan 2018 12:31:01 +0000 (18:01 +0530)
committeraishkashyap <as00476394@techmahindra.com>
Tue, 9 Jan 2018 12:31:09 +0000 (18:01 +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

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

Line No:83

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

index 965dc72..bbed74a 100644 (file)
@@ -79,7 +79,7 @@ public class EventBusEndpoint extends DefaultEndpoint {
   public Producer createProducer() throws Exception {
     return new EventBusProducer(this);
   }
-
+  @Override
   public Consumer createConsumer(Processor processor) throws Exception {
     return new EventBusConsumer(this, processor);
   }