summaryrefslogtreecommitdiffstats
path: root/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java
diff options
context:
space:
mode:
authorHailong Zhang <zhanghailong22@huawei.com>2019-09-04 15:40:25 +0800
committerHailong Zhang <zhanghailong22@huawei.com>2019-09-04 15:47:38 +0800
commit9c07c95e34bbc24022cb49efa584234f4067534a (patch)
tree696f131129b806fd288bb4ce94a883562f01a707 /csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java
parent26514e7bb8b174ba5bbbcf903b697160eb397e03 (diff)
modify Sonar Issue
Issue-ID: VNFSDK-462 Signed-off-by: Hailong Zhang <zhanghailong22@huawei.com> Change-Id: I010d99d82c1ac8919907cf70ea4f8893e0a4b06d
Diffstat (limited to 'csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java')
-rw-r--r--csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java b/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java
index 407d872..4ffe003 100644
--- a/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java
+++ b/csarvalidation/src/main/java/org/onap/cvc/csar/cc/sol001/VTPValidateCSARR09467.java
@@ -56,12 +56,12 @@ public class VTPValidateCSARR09467 extends VTPValidateCSARBase {
Map<String, ?> node = (Map<String, ?>) nodeO;
if (node.containsKey("type")) {
String type = (String)node.get("type");
- if (type.equalsIgnoreCase("tosca.nodes.nfv.VDU.Compute")) {
+ if ("tosca.nodes.nfv.VDU.Compute".equalsIgnoreCase(type)) {
computeExist = true;
}
- if (type.equalsIgnoreCase("tosca.nodes.nfv.VDU.VirtualStorage")) {
+ if ("tosca.nodes.nfv.VDU.VirtualStorage".equalsIgnoreCase(type)) {
storageExist = true;
}