From: Ankit-Huawei Date: Fri, 22 Sep 2017 12:42:10 +0000 (+0530) Subject: Added @Override for method X-Git-Tag: v1.1.0~296^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F97%2F14597%2F1;p=so.git Added @Override for method SO-158 Change-Id: I71ab81317e011e3721beaa93afd6e845d5e18036 Signed-off-by: Ankit-Huawei --- diff --git a/bpmn/MSOURN-plugin/src/main/java/org/openecomp/camunda/bpmn/plugin/urnmap/db/URNService.java b/bpmn/MSOURN-plugin/src/main/java/org/openecomp/camunda/bpmn/plugin/urnmap/db/URNService.java index 31b2e62b53..1eb0ba6f97 100644 --- a/bpmn/MSOURN-plugin/src/main/java/org/openecomp/camunda/bpmn/plugin/urnmap/db/URNService.java +++ b/bpmn/MSOURN-plugin/src/main/java/org/openecomp/camunda/bpmn/plugin/urnmap/db/URNService.java @@ -39,6 +39,7 @@ public class URNService { return commandExecutor.executeQueryCommand(new Command>() { @SuppressWarnings("unchecked") + @Override public List execute(CommandContext commandContext) { return (List) commandContext.getDbSqlSession().selectList("retrieveUrnKeyValuePair", null); }