From: aishkashyap Date: Tue, 9 Jan 2018 07:04:02 +0000 (+0530) Subject: Add @Override annotation above method signature. X-Git-Tag: v1.2.0~15^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;ds=sidebyside;h=d4e6a7c8d060bb9e0f7362dcf21ac81cb3691202;p=aai%2Frouter-core.git Add @Override annotation above method signature. 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 --- diff --git a/src/main/java/org/onap/aai/event/EventBusEndpoint.java b/src/main/java/org/onap/aai/event/EventBusEndpoint.java index 965dc72..0634b05 100644 --- a/src/main/java/org/onap/aai/event/EventBusEndpoint.java +++ b/src/main/java/org/onap/aai/event/EventBusEndpoint.java @@ -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); }