diff options
author | Steven Blimkie <Steven.Blimkie@amdocs.com> | 2018-01-17 15:31:56 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-01-17 15:31:56 +0000 |
commit | 3f6b9fb62c4f6abb7ce84ddc671723d78fc9062e (patch) | |
tree | 0820b9f9f46c936de37c0d5254fa6463e2560346 | |
parent | f9555994c02a6000f848e71e7a735442252123bd (diff) | |
parent | d4e6a7c8d060bb9e0f7362dcf21ac81cb3691202 (diff) |
Merge "Add @Override annotation above method signature."
-rw-r--r-- | src/main/java/org/onap/aai/event/EventBusEndpoint.java | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |