summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-05 16:12:40 +0530
committerPrasadNaidu <RV00493633@techmahindra.com>2018-02-05 16:13:05 +0530
commit44ec5d2bced3aa6a4348d939cf427c1eb9d92eb4 (patch)
tree58ff430e5560ec93d57457a1e41bc4e3d02b4c64
parent0d47ccca144711771e584e596393200e75ab1f5e (diff)
Sonar Major
Replace != with !== commonUtil.js:L22 Sonar Link : https://sonar.onap.org/component_issues/index?id=org.onap.aai.esr-gui%3Aaai-esr-gui#resolved=false|severities=MAJOR|assignees=PrasadNaidu Location : src/main/webapp/extsys/ems/js/commonUtil.js Change-Id: Ia3a84e08e88b04ee0cea325308f5236d942f8d5b Issue-ID: AAI-729 Signed-off-by: PrasadNaidu <RV00493633@techmahindra.com>
-rw-r--r--portal/src/main/webapp/extsys/ems/js/commonUtil.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/portal/src/main/webapp/extsys/ems/js/commonUtil.js b/portal/src/main/webapp/extsys/ems/js/commonUtil.js
index 6a55212..ca64eb5 100644
--- a/portal/src/main/webapp/extsys/ems/js/commonUtil.js
+++ b/portal/src/main/webapp/extsys/ems/js/commonUtil.js
@@ -19,7 +19,7 @@ commonUtil.arrayRemove = function (aryInstance, index) {
return;
}
for (var i = 0, n = 0; i < aryInstance.length; i++) {
- if (aryInstance[i] != aryInstance[dx]) {
+ if (aryInstance[i] !== aryInstance[dx]) {
aryInstance[n++] = aryInstance[i];
}
}