diff options
author | Dan Timoney <dtimoney@att.com> | 2018-12-17 20:49:53 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-12-17 20:49:53 +0000 |
commit | 54fc6f3dea49a176e4482105c9ba5f28eb053d7e (patch) | |
tree | d2b54c34fb365bd97a39546647f804142071902a | |
parent | 08777c369131904c5eefecaf169d2f1fee49cdce (diff) | |
parent | 9b99ab7c977888767dfdad22b3e239c78eca6135 (diff) |
Merge "fixed sonar issue in RecordNodeExecutor.java"
-rw-r--r-- | sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/RecordNodeExecutor.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/RecordNodeExecutor.java b/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/RecordNodeExecutor.java index 3522c0a79..be5462bdc 100644 --- a/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/RecordNodeExecutor.java +++ b/sli/provider-base/src/main/java/org/onap/ccsdk/sli/core/sli/provider/base/RecordNodeExecutor.java @@ -5,6 +5,8 @@ * Copyright (C) 2017 AT&T Intellectual Property. All rights * reserved. * ================================================================================ + * Modifications Copyright (C) 2018 IBM. + * ================================================================================ * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at @@ -48,7 +50,7 @@ public class RecordNodeExecutor extends AbstractSvcLogicNodeExecutor { LOG.trace(node.getNodeType() + " node encountered - looking for recorder class " + plugin); } - Map<String, String> parmMap = new HashMap<String, String>(); + Map<String, String> parmMap = new HashMap<>(); Set<Map.Entry<String, SvcLogicExpression>> parmSet = node.getParameterSet(); boolean hasParms = false; |