diff options
author | Ankit-Huawei <ankit.kumar.sinha1@huawei.com> | 2017-09-22 18:12:10 +0530 |
---|---|---|
committer | Ankit kumar sinha <ankit.ietf@gmail.com> | 2017-09-22 18:19:56 +0530 |
commit | 84cf79539fc71dd07234820523590dacee3eb5e6 (patch) | |
tree | 2bc18e83f478358e9528e69f44af18f68debf771 /bpmn | |
parent | 3edfd0cb8adfff9e98b4e7b4ea6c449a45bb1178 (diff) |
Added @Override for method
SO-158
Change-Id: I71ab81317e011e3721beaa93afd6e845d5e18036
Signed-off-by: Ankit-Huawei <ankit.kumar.sinha1@huawei.com>
Diffstat (limited to 'bpmn')
-rw-r--r-- | bpmn/MSOURN-plugin/src/main/java/org/openecomp/camunda/bpmn/plugin/urnmap/db/URNService.java | 1 |
1 files changed, 1 insertions, 0 deletions
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<List<URNData>>() {
@SuppressWarnings("unchecked")
+ @Override
public List<URNData> execute(CommandContext commandContext) {
return (List<URNData>) commandContext.getDbSqlSession().selectList("retrieveUrnKeyValuePair", null);
}
|