summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPrasadNaidu <RV00493633@techmahindra.com>2018-02-05 18:21:18 +0530
committerPrasadNaidu <RV00493633@techmahindra.com>2018-02-05 18:21:41 +0530
commit73971caa9bc7aaa5ddcfa6417be95fff49dfc926 (patch)
treefebf97425ce5ae205df9a524af10196d561fa383
parent378b74b36f7acc7cd68bdac170348e62c4c5ceeb (diff)
Sonar Major
Replace == with === commonUtil.js:L89 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.jsChange-Id: I4360ba702951cab1daa1bb92d57f43a3fc1389a8 Change-Id: I9df044d1e18c1cd58306ac351eaaf2ddc105f113 Issue-ID: AAI-731 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 cd56bd1..3604c4e 100644
--- a/portal/src/main/webapp/extsys/ems/js/commonUtil.js
+++ b/portal/src/main/webapp/extsys/ems/js/commonUtil.js
@@ -86,7 +86,7 @@ commonUtil.registerCometdMessage = function (url, channel, callback) {
}
commonUtil.format = function () {
- if (arguments.length == 0) {
+ if (arguments.length === 0) {
return null;
}
var str = arguments[0];